Animated Button 2
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 { 20%{ background: red; color: white; } 40%{ background: yellow; color: black; } 60%{ background: green; color: white; } 80%{ background: blue; color: black; } 100%{ background: red; color: white; } }
Follow Us