mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-16 17:18:27 +01:00
20 lines
336 B
CSS
20 lines
336 B
CSS
@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 !important;
|
|
}
|