animate.css/fading_exits/fadeOutRightBig.styl

12 lines
141 B
Stylus
Raw Normal View History

@keyframes fadeOutRightBig {
0% {
opacity: 1;
transform: translateX(0);
}
100% {
opacity: 0;
transform: translateX(2000px);
}
}