Pulse Animation Effect
Run
HTML
Pulse
CSS
.circle { width: 100px; height: 100px; background: #ad132a; border-radius: 50%; } .pulse { animation-name: pulse; animation-duration: 1s; animation-iteration-count: infinite; animation-delay: 1s; animation-fill-mode: both; } @keyframes pulse { 0% { transform: scale3d(1, 1, 1); } 50% { transform: scale3d(1.05, 1.05, 1.05); } 100% { transform: scale3d(1, 1, 1); } }
Follow Us