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