bounceOutRight.css 226 B

12345678910111213141516
  1. @keyframes bounceOutRight {
  2. 20% {
  3. opacity: 1;
  4. transform: translate3d(-20px, 0, 0);
  5. }
  6. 100% {
  7. opacity: 0;
  8. transform: translate3d(2000px, 0, 0);
  9. }
  10. }
  11. .bounceOutRight {
  12. animation-name: bounceOutRight;
  13. }