Animated Button 9
Run
HTML
Animated Button
Button
CSS
.ani-button { width: 80px; height: 80px; border: 3px solid orange; border-radius: 50%; outline: none; background: white; color: #000000; animation-name: button; animation-duration: 2s; animation-iteration-count: infinite; } @keyframes button { 20%{ background: white; } 40%{ background: linear-gradient(red,yellow); border: none; } 60%{ background: linear-gradient(red,yellow,white); border: none; } 80%{ background: linear-gradient(red,yellow,white,blue); border: none; } 100%{ background: white; } }
Follow Us