mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-18 01:50:36 +01:00
17 lines
No EOL
306 B
CSS
17 lines
No EOL
306 B
CSS
@keyframes zoomInDown {
|
|
0% {
|
|
opacity: 0;
|
|
transform: scale(.1) translateY(-2000px);
|
|
animation-timing-function: ease-in-out;
|
|
}
|
|
|
|
60% {
|
|
opacity: 1;
|
|
transform: scale(.475) translateY(60px);
|
|
animation-timing-function: ease-out;
|
|
}
|
|
}
|
|
|
|
.zoomInDown {
|
|
animation-name: zoomInDown;
|
|
} |