animate.css/sliders/slideOutLeft.styl
Sean Lang 748f7cfb56 reorganized to take advantage of stylus
removed all compiled CSS, removed the grunt build (because people should
be using their own build setup anyway), and split up sections of the
readme
2013-12-08 21:30:31 -06:00

14 lines
No EOL
174 B
Stylus

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