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 zoomInLeft {
|
|
0% {
|
|
opacity: 0;
|
|
transform: scale(.1) translateX(-2000px);
|
|
animation-timing-function: ease-in-out;
|
|
}
|
|
|
|
60% {
|
|
opacity: 1;
|
|
transform: scale(.475) translateX(48px);
|
|
animation-timing-function: ease-out;
|
|
}
|
|
}
|
|
|
|
.zoomInLeft {
|
|
animation-name: zoomInLeft;
|
|
} |