animate.css/source/sliding_entrances/slideInDown.css
Jonathan Argentiero 11b8b036b2 Added sliding entrances and exits
Generic slideIn/Out animations for absolute elements
2014-08-11 15:59:15 +02:00

15 lines
190 B
CSS

@keyframes slideInDown {
0% {
transform: translateY(-100%);
visibility: visible;
}
100% {
transform: translateY(0);
}
}
.slideInDown {
animation-name: slideInDown;
}