mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-19 02:20:35 +01:00
0bc05a7559
and fixed typo in the previous commit at source/attention_seekers/swing.css
16 lines
266 B
CSS
16 lines
266 B
CSS
@keyframes flipOutX {
|
|
0% {
|
|
transform: perspective(400px) rotateX(0deg);
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
transform: perspective(400px) rotateX(90deg);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.flipOutX {
|
|
animation-name: flipOutX;
|
|
backface-visibility: visible !important;
|
|
}
|