animate.css/source/sliding_entrances/slideInLeft.css

15 lines
206 B
CSS
Raw Normal View History

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