0% completed
Explanation:
Button Structure:
<button>
element with the class .bounce-button
is created to serve as the interactive element.Initial Styling:
transform
property in case of immediate small changes, even though the animation handles the major bounce effect.Hover State and Animation:
.bounce-button:hover
), the animation
property is activated.bounce
runs for 0.6 seconds using an "ease" timing function.Keyframes (Bounce Animation):
@keyframes bounce
rule defines:
translateY(0)
).translateY(-20px)
), creating the bounce peak.Outcome:
This solution fulfills the challenge requirements by using keyframe animations along with the necessary animation properties (name, duration, timing) to create an engaging, interactive bouncing effect on a button—all without JavaScript.
.....
.....
.....