anicollection
Version:
AniCollection, The easiest way to find, use and share CSS3 animations.
30 lines (28 loc) • 589 B
CSS
/*
*@name flipOutX
*@className flipOutX 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 flipOutX {
0% {
transform: perspective(400px)
}
30% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1
}
100% {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0
}
}
.flipOutX {
animation-name: flipOutX;
backface-visibility: visible
}