mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-10 21:36:31 +01:00
21 lines
274 B
CSS
21 lines
274 B
CSS
|
@keyframes backOutUp {
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.backOutUp {
|
||
|
animation-name: backOutUp;
|
||
|
}
|