animate.css/source/sliders/slideOutDown.css

15 lines
185 B
CSS
Raw Normal View History

2014-03-21 15:13:07 +01:00
@keyframes slideOutDown {
0% {
transform: translateY(0);
}
100% {
opacity: 0;
transform: translateY(2000px);
}
}
.slideOutDown {
animation-name: slideOutDown;
}