Animated Button 1
Run
HTML
Animated Button
Button
CSS
.ani-button{ width: 100px; height: 50px; border: 2px solid green; outline: none; background: white; color: #000000; animation-name: button; animation-duration: 2s; animation-iteration-count: infinite; } @keyframes button { 20%{ width: 30px; font-size: 0.3em; } 40%{ width: 50px; font-size: 0.5em; } 60%{ width: 70px; font-size: 0.7em; } 80%{ width: 90px; font-size: 0.9em; } 100%{ width: 100px; font-size: 1em; } }
Follow Us