Animated Button 3
Run
HTML
Animated Button
Button
CSS
.ani-button { width: 100px; height: 50px; border: none; outline: none; background: white; color: #000000; animation-name: button; animation-duration: 2s; animation-iteration-count: infinite; } @keyframes button { 25%{ border: 4px ridge cyan; } 50%{ border: 4px ridge #00ff00; } 75%{ border: 4px ridge tomato; } 100%{ border: 4px ridge dodgerblue; } }
Follow Us