fadeOutBottomLeft.css 231 B

1234567891011121314
  1. @keyframes fadeOutBottomLeft {
  2. from {
  3. opacity: 1;
  4. transform: translate3d(0, 0, 0);
  5. }
  6. to {
  7. opacity: 0;
  8. transform: translate3d(-100%, 100%, 0);
  9. }
  10. }
  11. .fadeOutBottomLeft {
  12. animation-name: fadeOutBottomLeft;
  13. }