anicollection
Version:
AniCollection, The easiest way to find, use and share CSS3 animations.
27 lines (25 loc) • 487 B
CSS
/*
*@name rotateOut
*@className rotateOut 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 rotateOut {
0% {
transform-origin: center;
opacity: 1
}
100% {
transform-origin: center;
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0
}
}
.rotateOut {
animation-name: rotateOut
}