animate.css/fading_exits/fadeOutUpBig.styl

12 lines
139 B
Stylus
Raw Normal View History

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