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