mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-11 05:46:32 +01:00
21 lines
283 B
CSS
21 lines
283 B
CSS
|
@keyframes backOutRight {
|
||
|
0% {
|
||
|
transform: scale(1);
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
20% {
|
||
|
transform: translateX(0px) scale(0.7);
|
||
|
opacity: 0.7;
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
transform: translateX(2000px) scale(0.7);
|
||
|
opacity: 0.7;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.backOutRight {
|
||
|
animation-name: backOutRight;
|
||
|
}
|