mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-10 21:36:31 +01:00
21 lines
336 B
CSS
21 lines
336 B
CSS
@keyframes flipOutX {
|
|
from {
|
|
transform: perspective(400px);
|
|
}
|
|
|
|
30% {
|
|
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.flipOutX {
|
|
animation-name: flipOutX;
|
|
backface-visibility: visible !important;
|
|
}
|