bounceInRight.css 710 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Modified based on animate.css and added prefix name to prevent style conflicts
  3. * Reference: https://github.com/animate-css/animate.css
  4. */
  5. @keyframes semi-bounceInRight {
  6. from,
  7. 60%,
  8. 75%,
  9. 90%,
  10. to {
  11. animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  12. }
  13. from {
  14. opacity: 0;
  15. transform: translate3d(3000px, 0, 0);
  16. }
  17. 60% {
  18. opacity: 1;
  19. transform: translate3d(-25px, 0, 0);
  20. }
  21. 75% {
  22. transform: translate3d(10px, 0, 0);
  23. }
  24. 90% {
  25. transform: translate3d(-5px, 0, 0);
  26. }
  27. to {
  28. transform: translate3d(0, 0, 0);
  29. }
  30. }
  31. .semi-bounceInRight {
  32. animation-name: semi-bounceInRight;
  33. }