anicollection
Version:
AniCollection, The easiest way to find, use and share CSS3 animations.
28 lines (26 loc) • 642 B
CSS
/*
*@name zoomInUp
*@className zoomInUp 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 zoomInUp {
0% {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
}
}
.zoomInUp {
animation-name: zoomInUp
}