animate.css/sliders/slideOutLeft.styl

14 lines
174 B
Stylus
Raw Normal View History

@keyframes slideOutLeft {
0% {
transform: translateX(0);
}
100% {
opacity: 0;
transform: translateX(-2000px);
}
}
.slideOutLeft {
animation-name: slideOutLeft;
}