lightSpeedOutLeft.css 244 B

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