Skip to content

Transition

Overview

Applies a transition to an element. By default it animates opacity, transform, and box-shadow.

html
<button class="b-transition"></button>

Modifiers

For Colors

Switches the transition to color-related properties.

NameDescription
b-transition--for-colorsTransitions background-color, border-color, and color.
html
<button class="b-transition b-transition--for-colors"></button>

Curve

Sets the transition timing function.

NameDescription
b-transition--curve-easeEase.
b-transition--curve-ease-in-outEase in out.
html
<button class="b-transition b-transition--curve-ease-in-out"></button>

Notes

The transition is disabled when prefers-reduced-motion is set, or when the element is disabled.