Animated Button 7
Run
HTML
Animated Button
Button
CSS
.ani-button { width: 80px; height: 80px; border: 4px solid #000000; border-radius: 50%; outline: none; background: white; color: #000000; animation-name: button; animation-duration: 4s; animation-iteration-count: infinite; } @keyframes button { 20%{ border: 5px solid dodgerblue; } 40%{ border: 7px solid dodgerblue; } 60%{ border: 9px solid dodgerblue; } 80%{ border: 11px solid dodgerblue; } 100%{ border: 3px solid dodgerblue; background: dodgerblue; color: white; } }
Follow Us