pulse.css 284 B

1234567891011121314151617181920
  1. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  2. @keyframes pulse {
  3. from {
  4. transform: scale3d(1, 1, 1);
  5. }
  6. 50% {
  7. transform: scale3d(1.05, 1.05, 1.05);
  8. }
  9. to {
  10. transform: scale3d(1, 1, 1);
  11. }
  12. }
  13. .pulse {
  14. animation-name: pulse;
  15. }