animate.css/sliders/slideInDown.styl

11 lines
124 B
Stylus
Raw Normal View History

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