Challenge: Implement CSS Animation
Task
Enhance the visual appeal of the authorization form by adding an animation to the "Log in" button. Follow these steps:
- Specify the correct value for the
animation-name
property, using the preset state changes defined in the@keyframes
rule with the namecolorChange
. - Set the time function to
linear
to ensure a consistent speed throughout the animation. - Define a duration for the animation to last
6000ms
. - Configure the animation to repeat
infinite
times for a continuous effect.
index.html
index.css
Obrigado pelo seu feedback!