_animation.scss 596 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // Animation Utilities
  2. // Grow In Animation
  3. @keyframes growIn {
  4. 0% {
  5. transform: scale(0.9);
  6. opacity: 0;
  7. }
  8. 100% {
  9. transform: scale(1);
  10. opacity: 1;
  11. }
  12. }
  13. .animated--grow-in {
  14. animation-name: growIn;
  15. animation-duration: 200ms;
  16. animation-timing-function: transform cubic-bezier(.18,1.25,.4,1), opacity cubic-bezier(0,1,.4,1);
  17. }
  18. // Fade In Animation
  19. @keyframes fadeIn {
  20. 0% {
  21. opacity: 0;
  22. }
  23. 100% {
  24. opacity: 1;
  25. }
  26. }
  27. .animated--fade-in {
  28. animation-name: fadeIn;
  29. animation-duration: 200ms;
  30. animation-timing-function: opacity cubic-bezier(0,1,.4,1);
  31. }