mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-16 17:18:27 +01:00
14 lines
187 B
CSS
14 lines
187 B
CSS
@keyframes fadeOutRightBig {
|
|
from {
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
transform: translate3d(2000px, 0, 0);
|
|
}
|
|
}
|
|
|
|
.fadeOutRightBig {
|
|
animation-name: fadeOutRightBig;
|
|
}
|