hi-ucs/node_modules/_animate.css@4.1.1@animate.css/source/specials/jackInTheBox.css

25 lines
325 B
CSS
Raw Normal View History

2022-08-16 09:55:42 +08:00
@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;
}