anicollection
Version:
AniCollection, The easiest way to find, use and share CSS3 animations.
28 lines (26 loc) • 438 B
CSS
/*
*@name zoomOut
*@className zoomOut 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 zoomOut {
0% {
opacity: 1
}
50% {
opacity: 0;
transform: scale3d(.3, .3, .3)
}
100% {
opacity: 0
}
}
.zoomOut {
animation-name: zoomOut
}