mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-10 21:36:31 +01:00
21 lines
279 B
CSS
21 lines
279 B
CSS
|
@keyframes backOutDown {
|
||
|
0% {
|
||
|
transform: scale(1);
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
20% {
|
||
|
transform: translateY(0px) scale(0.7);
|
||
|
opacity: 0.7;
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
transform: translateY(700px) scale(0.7);
|
||
|
opacity: 0.7;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.backOutDown {
|
||
|
animation-name: backOutDown;
|
||
|
}
|