You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728
  1. .motion-common() {
  2. animation-duration: @animation-time;
  3. animation-fill-mode: both;
  4. }
  5. .make-motion(@className, @keyframeName) {
  6. .@{className}-enter, .@{className}-appear {
  7. .motion-common();
  8. animation-play-state: paused;
  9. }
  10. .@{className}-leave {
  11. .motion-common();
  12. animation-play-state: paused;
  13. }
  14. .@{className}-enter, .@{className}-appear {
  15. animation-name: ~"@{keyframeName}In";
  16. animation-play-state: running;
  17. }
  18. .@{className}-leave {
  19. animation-name: ~"@{keyframeName}Out";
  20. animation-play-state: running;
  21. }
  22. }
  23. @import "fade";
  24. @import "move";
  25. @import "ease";
  26. @import "slide";