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