lightSpeedOut.css 230 B

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