mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-14 08:11:09 +01:00
9a09e72d78
* use gulp * convert tabs to spaces * convert tabs to spaces
24 lines
325 B
CSS
24 lines
325 B
CSS
@keyframes jackInTheBox {
|
|
from {
|
|
opacity: 0;
|
|
transform: scale(0.1) rotate(30deg);
|
|
transform-origin: center bottom;
|
|
}
|
|
|
|
50% {
|
|
transform: rotate(-10deg);
|
|
}
|
|
|
|
70% {
|
|
transform: rotate(3deg);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
.jackInTheBox {
|
|
animation-name: jackInTheBox;
|
|
}
|