_animation.scss 538 B

1234567891011121314151617181920212223
  1. .default-animation {
  2. transition: all 0.5s ease;
  3. }
  4. // Pulse Animation
  5. .pulse {
  6. animation-name: pulse_animation;
  7. animation-duration: 2000ms;
  8. transform-origin:70% 70%;
  9. animation-iteration-count: infinite;
  10. animation-timing-function: linear;
  11. }
  12. @keyframes pulse_animation {
  13. 0% { transform: scale(1); }
  14. 30% { transform: scale(1); }
  15. 40% { transform: scale(1.08); }
  16. 50% { transform: scale(1); }
  17. 60% { transform: scale(1); }
  18. 70% { transform: scale(1.05); }
  19. 80% { transform: scale(1); }
  20. 100% { transform: scale(1); }
  21. }