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