animate.css/sliders/slideOutLeft.styl

11 lines
125 B
Stylus
Raw Normal View History

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