anicollection
Version:
AniCollection, The easiest way to find, use and share CSS3 animations.
27 lines (25 loc) • 550 B
CSS
/*
*@name zoomOutLeft
*@className zoomOutLeft animated
*@cssCode true
*@editionLink codepen.io
*@author Dan Eden
*@source Animate.css
*@sourceUrl http://daneden.github.io/animate.css/
*@issues https://github.com/daneden/animate.css/issues
*@license MIT
*/
@keyframes zoomOutLeft {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
}
100% {
opacity: 0;
transform: scale(.1) translate3d(-2000px, 0, 0);
transform-origin: left center
}
}
.zoomOutLeft {
animation-name: zoomOutLeft
}