mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-18 10:00:36 +01:00
15 lines
No EOL
283 B
CSS
15 lines
No EOL
283 B
CSS
@keyframes flipOutY {
|
|
0% {
|
|
transform: perspective(400px) rotateY(0deg);
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
transform: perspective(400px) rotateY(90deg);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.flipOutY {
|
|
backface-visibility: visible !important;
|
|
animation-name: flipOutY;
|
|
} |