Files
maitsevkimp.ee/assets/libs/animate.css/source/specials/jackInTheBox.css
T
s-lnk aabe5fe2b7 v1
2026-04-30 21:58:39 +03:00

25 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;
}