lightSpeedOutRight.css 245 B

123456789101112131415
  1. @keyframes lightSpeedOutRight {
  2. from {
  3. opacity: 1;
  4. }
  5. to {
  6. transform: translate3d(100%, 0, 0) skewX(30deg);
  7. opacity: 0;
  8. }
  9. }
  10. .lightSpeedOutRight {
  11. animation-name: lightSpeedOutRight;
  12. animation-timing-function: ease-in;
  13. }