mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-19 02:20:35 +01:00
17 lines
No EOL
302 B
CSS
17 lines
No EOL
302 B
CSS
@keyframes zoomOutDown {
|
|
40% {
|
|
opacity: 1;
|
|
transform: scale(.475) translateY(-60px);
|
|
animation-timing-function: linear;
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
transform: scale(.1) translateY(2000px);
|
|
transform-origin: center bottom;
|
|
}
|
|
}
|
|
|
|
.zoomOutDown {
|
|
animation-name: zoomOutDown;
|
|
} |