Animated Button 5
Run
HTML
Animated Button
Button
CSS
.ani-button { width: 100px; height: 50px; border: 4px solid black; outline: none; background: white; color: #000000; animation-name: button; animation-duration: 2s; animation-iteration-count: infinite; } @keyframes button { 20%{ border-top-left-radius: 20px; border-top: 4px solid red; } 40%{ border-top-right-radius: 20px; border-right: 4px solid yellow; } 60%{ border-bottom-left-radius: 20px; border-bottom: 4px solid #00ff00; } 80%{ border-bottom-right-radius: 20px; border-left: 4px solid cyan; } 100%{ border-top-left-radius: 20px; border-top: 4px solid red; } }
Follow Us