slideInLeft.css 204 B

123456789101112131415
  1. @keyframes slideInLeft {
  2. 0% {
  3. transform: translate3d(-100%, 0, 0);
  4. visibility: visible;
  5. }
  6. 100% {
  7. transform: translate3d(0, 0, 0);
  8. }
  9. }
  10. .slideInLeft {
  11. animation-name: slideInLeft;
  12. }