mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 17:45:17 +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 flipOutY {
|
|
0% {
|
|
transform: perspective(400px) rotateY(0deg);
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
transform: perspective(400px) rotateY(90deg);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.flipOutY {
|
|
backface-visibility: visible !important;
|
|
animation-name: flipOutY;
|
|
}
|