animate.css/fading_exits/fadeOutLeftBig.styl

12 lines
141 B
Stylus
Raw Normal View History

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