Pulse button
Pulse
HTML
<div id="pulse">Pulse</div>
Kopiuj
CSS
#pulse { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; border-radius: 50%; background: #e5982f; text-align: center; line-height: 100px; font-family: sans-serif; text-transform: uppercase; color: #fff; animation: anime 2s linear infinite; cursor: pointer; } #pulse:hover { color: #815416; } @keyframes anime { 0% { box-shadow: 0 0 0 0 rgba(229, 152, 47, .6), 0 0 0 0 rgba(229, 152, 47, .6); transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.2); } 100% { box-shadow: 0 0 0 50px rgba(229, 152, 47, .1), 0 0 0 30px rgba(229, 152, 47, .1); transform: translate(-50%, -50%) scale(1); } }
Kopiuj