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