animate.css/source/sliding_exits/slideOutLeft.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
192 B
CSS

@keyframes slideOutLeft {
0% {
transform: translateX(0);
}
100% {
visibility: hidden;
transform: translateX(-100%);
}
}
.slideOutLeft {
animation-name: slideOutLeft;
}