transition-timing-function
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2015.
Thetransition-timing-function
CSS property sets how intermediate values are calculated for CSS properties being affected by atransition effect.
In this article
Try it
transition-timing-function: linear;
transition-timing-function: ease-in;
transition-timing-function: steps(6, end);
transition-timing-function: cubic-bezier(0.29, 1.01, 1, -0.68);
<section> <div>Hover to see<br />the transition.</div></section>
#example-element { background-color: #e4f0f5; color: black; padding: 1rem; border-radius: 0.5rem; font: 1em monospace; width: 100%; transition: margin-right 2s;}#default-example:hover > #example-element { background-color: #990099; color: white; margin-right: 40%;}
This, in essence, lets you establish an acceleration curve so that the speed of the transition can vary over its duration.
This acceleration curve is defined using one<easing-function>
for each property to be transitioned.
You may specify multiple easing functions; each one will be applied to the corresponding property as specified by thetransition-property
property, which acts as atransition-property
list. If there are fewer easing functions specified than in thetransition-property
list, the user agent must calculate which value is used by repeating the list of values until there is one for each transition property. If there are more easing functions, the list is truncated to the right size. In both cases, the CSS declaration stays valid.
Syntax
/* Keyword values */transition-timing-function: ease;transition-timing-function: ease-in;transition-timing-function: ease-out;transition-timing-function: ease-in-out;transition-timing-function: linear;transition-timing-function: step-start;transition-timing-function: step-end;/* Function values */transition-timing-function: steps(4, jump-end);transition-timing-function: cubic-bezier(0.1, 0.7, 1, 0.1);/* Steps Function keywords */transition-timing-function: steps(4, jump-start);transition-timing-function: steps(10, jump-end);transition-timing-function: steps(20, jump-none);transition-timing-function: steps(5, jump-both);transition-timing-function: steps(6, start);transition-timing-function: steps(8, end);/* Multiple easing functions */transition-timing-function: ease, step-start, cubic-bezier(0.1, 0.7, 1, 0.1);/* Global values */transition-timing-function: inherit;transition-timing-function: initial;transition-timing-function: revert;transition-timing-function: revert-layer;transition-timing-function: unset;
Values
<easing-function>
Each
<easing-function>
represents the easing function to link to the corresponding property to transition, as defined intransition-property
.The non-step keyword values (ease, linear, ease-in-out, etc.) each represent cubic Bézier curve with fixed four point values, with the cubic-bezier() function value allowing for a non-predefined value. The step easing functions divide the input time into a specified number of intervals that are equal in length. It is defined by a number of steps and a step position.
ease
Equal to
cubic-bezier(0.25, 0.1, 0.25, 1.0)
, the default value, increases in velocity towards the middle of the transition, slowing back down at the end.linear
Equal to
cubic-bezier(0.0, 0.0, 1.0, 1.0)
, transitions at an even speed.ease-in
Equal to
cubic-bezier(0.42, 0, 1.0, 1.0)
, starts off slowly, with the transition speed increasing until complete.ease-out
Equal to
cubic-bezier(0, 0, 0.58, 1.0)
, starts transitioning quickly, slowing down as the transition continues.ease-in-out
Equal to
cubic-bezier(0.42, 0, 0.58, 1.0)
, starts transitioning slowly, speeds up, and then slows down again.cubic-bezier(p1, p2, p3, p4)
An author-defined cubic-Bezier curve, where the p1 and p3 values must be in the range of 0 to 1.
steps(n, <jump-term>)
Displays the transition alongn stops along the transition, displaying each stop for equal lengths of time. For example, ifn is 5, there are 5 steps. Whether the transition holds temporarily at 0%, 20%, 40%, 60% and 80%, on the 20%, 40%, 60%, 80% and 100%, or makes 5 stops between the 0% and 100% along the transition, or makes 5 stops including the 0% and 100% marks (on the 0%, 25%, 50%, 75%, and 100%) depends on which of the following jump terms is used:
jump-start
Denotes a left-continuous function, so that the first jump happens when the transition begins;
jump-end
Denotes a right-continuous function, so that the last jump happens when the animation ends;
jump-none
There is no jump on either end. Instead, holding at both the 0% mark and the 100% mark, each for 1/n of the duration
jump-both
Includes pauses at both the 0% and 100% marks, effectively adding a step during the transition time.
start
Same as
jump-start
.end
Same as
jump-end
.
step-start
Equal to
steps(1, jump-start)
step-end
Equal to
steps(1, jump-end)
Accessibility
Some animations can be helpful such as to guide users to understand what actions are expected, to show relationships within the user interface, and to inform users as to what actions have occurred. Animations can help reduce cognitive load, prevent change blindness, and establish better recall in spatial relationships. However, some animations can be problematic for people with cognitive concerns such as Attention Deficit Hyperactivity Disorder (ADHD) and certain kinds of motion can be a trigger for Vestibular disorders, epilepsy, and migraine and Scotopic sensitivity.
Consider providing a mechanism for pausing or disabling animation, as well as using theReduced Motion Media Query (or equivalentUser Agent client hintSec-CH-Prefers-Reduced-Motion
) to create a complimentary experience for users who have expressed a preference for less animation.
Formal definition
Initial value | ease |
---|---|
Applies to | all elements,::before and::after pseudo-elements |
Inherited | no |
Computed value | as specified |
Animation type | Not animatable |
Formal syntax
transition-timing-function =
<easing-function>#
<easing-function> =
<linear-easing-function>|
<cubic-bezier-easing-function>|
<step-easing-function>
<linear-easing-function> =
linear|
<linear()>
<cubic-bezier-easing-function> =
ease|
ease-in|
ease-out|
ease-in-out|
<cubic-bezier()>
<step-easing-function> =
step-start|
step-end|
<steps()>
<linear()> =
linear([<number>&&<percentage>{0,2}]#)
<cubic-bezier()> =
cubic-bezier([<number [0,1]> ,<number>]#{2})
<steps()> =
steps(<integer> ,<step-position>?)
<step-position> =
jump-start|
jump-end|
jump-none|
jump-both|
start|
end
Examples
>Cubic-Bezier examples
<div> <div>ease</div> <div>ease-in</div> <div>ease-out</div> <div>ease-in-out</div> <div>linear</div> <div>cubic-bezier(0.2,-2,0.8,2)</div></div>
.parent {}.parent > div[class] { width: 12em; min-width: 12em; margin-bottom: 4px; background-color: black; border: 1px solid red; color: white; transition-property: all; transition-duration: 7s;}.parent > div.box1 { width: 90vw; min-width: 24em; background-color: magenta; color: yellow; border: 1px solid orange; transition-property: all; transition-duration: 2s;}
function updateTransition() { const els = document.querySelectorAll(".parent > div[class]"); for (const el of els) { el.classList.toggle("box1"); }}const intervalID = setInterval(updateTransition, 10000);
.ease { transition-timing-function: ease;}.ease-in { transition-timing-function: ease-in;}.ease-out { transition-timing-function: ease-out;}.ease-in-out { transition-timing-function: ease-in-out;}.linear { transition-timing-function: linear;}.cb { transition-timing-function: cubic-bezier(0.2, -2, 0.8, 2);}
Step examples
<div> <div>jump-start</div> <div>jump-end</div> <div>jump-both</div> <div>jump-none</div> <div>step-start</div> <div>step-end</div></div>
.parent {}.parent > div[class] { width: 12em; min-width: 12em; margin-bottom: 4px; background-color: black; border: 1px solid red; color: white; transition-property: all; transition-duration: 7s;}.parent > div.box1 { width: 90vw; min-width: 24em; background-color: magenta; color: yellow; border: 1px solid orange; transition-property: all; transition-duration: 2s;}
function updateTransition() { const els = document.querySelectorAll(".parent > div[class]"); for (const el of els) { el.classList.toggle("box1"); }}const intervalID = setInterval(updateTransition, 10000);
.jump-start { transition-timing-function: steps(5, jump-start);}.jump-end { transition-timing-function: steps(5, jump-end);}.jump-none { transition-timing-function: steps(5, jump-none);}.jump-both { transition-timing-function: steps(5, jump-both);}.step-start { transition-timing-function: step-start;}.step-end { transition-timing-function: step-end;}
Specifications
Specification |
---|
CSS Transitions> # transition-timing-function-property> |
Browser compatibility
Loading…