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
24 lines
390 B
CSS
24 lines
390 B
CSS
@keyframes flipInY {
|
|
0% {
|
|
transform: perspective(400px) rotateY(90deg);
|
|
opacity: 0;
|
|
}
|
|
|
|
40% {
|
|
transform: perspective(400px) rotateY(-10deg);
|
|
}
|
|
|
|
70% {
|
|
transform: perspective(400px) rotateY(10deg);
|
|
}
|
|
|
|
100% {
|
|
transform: perspective(400px) rotateY(0deg);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.flipInY {
|
|
backface-visibility: visible !important;
|
|
animation-name: flipInY;
|
|
}
|