animate.css/source/sliding_entrances/slideInLeft.css
2015-03-20 17:38:01 -07:00

15 lines
204 B
CSS

@keyframes slideInLeft {
0% {
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
100% {
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
animation-name: slideInLeft;
}