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 flipOutY {
|
|
from {
|
|
transform: perspective(400px);
|
|
}
|
|
|
|
30% {
|
|
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.flipOutY {
|
|
backface-visibility: visible !important;
|
|
animation-name: flipOutY;
|
|
}
|