index.styl 611 B

123456789101112131415161718192021222324252627282930313233
  1. .modal-fade-enter-active,
  2. .modal-fade-leave-active
  3. transition: opacity 0.3s ease
  4. .modal-fade-enter-from,
  5. .modal-fade-leave-to
  6. opacity: 0
  7. .modal-content
  8. transition: all 0.3s ease
  9. transform-origin: center
  10. .modal-fade-enter-active .modal-content
  11. animation: modal-scale-in 0.3s ease
  12. .modal-fade-leave-active .modal-content
  13. animation: modal-scale-out 0.3s ease
  14. @keyframes modal-scale-in
  15. 0%
  16. opacity: 0
  17. transform: scale(0.9)
  18. 100%
  19. opacity: 1
  20. transform: scale(1)
  21. @keyframes modal-scale-out
  22. 0%
  23. opacity: 1
  24. transform: scale(1)
  25. 100%
  26. opacity: 0
  27. transform: scale(0.9)