animate.css/source/zooming_exits/zoomOutLeft.css

17 lines
300 B
CSS
Raw Normal View History

@keyframes zoomOutLeft {
40% {
opacity: 1;
2014-04-22 18:38:20 +02:00
transform: scale(.475) translateX(42px);
animation-timing-function: linear;
}
100% {
opacity: 0;
transform: scale(.1) translateX(-2000px);
transform-origin: left center;
}
}
.zoomOutLeft {
animation-name: zoomOutLeft;
}