Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1.59 KB

File metadata and controls

28 lines (17 loc) · 1.59 KB
title slug page-type
How to fade a button on hover
Learn/CSS/Howto/Transition_button
learn-faq

{{LearnSidebar}}

In this guide you can find out how to do a gentle fade between two colors when hovering over a button.

In our button example, we can change the background of our button by defining a different background color for the :hover dynamic pseudo-class. However, hovering over the button will cause the background-color to snap to the new color. To create a more gentle change between the two, we can use CSS Transitions.

Using transitions

After adding the desired color for the hover state, add the {{cssxref("transition")}} property to the rules for the button. For a simple transition, the value of transition is the name of the property or properties you wish this transition to apply to, and the time that the transition should take.

For the :active and :focus pseudo-classes the {{cssxref("transition")}} property is set to none, so that the button snaps to the active state when clicked.

In the example the transition takes 1 second, you can try changing this to see the difference a change in speed makes.

{{EmbedGHLiveSample("css-examples/howto/transition-button.html", '100%', 720)}}

Note

The {{cssxref("transition")}} property is a shorthand for {{cssxref("transition-delay")}}, {{cssxref("transition-duration")}}, {{cssxref("transition-property")}}, and {{cssxref("transition-timing-function")}}. See the pages for these properties on MDN to find ways to tweak your transitions.

See also