Style animationTimingFunction Property

Example

Changing the animationTimingFunction property of a <div> element:

document.getElementById("myDIV").style.animationTimingFunction = "linear";
Try it Yourself »

Description

The animationTimingFunction specifies the speed curve of the animation.

The speed curve defines the TIME an animation uses to change from one set of CSS styles to another.

The speed curve is used to make the changes smoothly.


Syntax

Return the animationTimingFunction property:

object.style.animationTimingFunction

Set the animationTimingFunction property:

object.style.animationTimingFunction = "linear|ease|ease-in|ease-out|cubic-bezier(n, n, n, n)|initial|inherit"

Property Values

Value Description
linear The animation has the same speed from start to end
ease Default value. The animation has a slow start, then fast, before it ends slowly
ease-in The animation has a slow start
ease-out The animation has a slow end
ease-in-out The animation has both a slow start and a slow end
cubic-bezier(n, n, n, n) Define your own values in the cubic-bezier function
Possible values are numeric values from 0 to 1
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

Technical Details

Default Value: ease
Return Value: A String, representing the animation-timing-function property of an element
CSS Version CSS3

Browser Support

animationTimingFunction is a CSS3 (1999) feature.

It is fully supported in all browsers:

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes 11

Related Pages

CSS reference: animation-timing-function property


Copyright 1999-2023 by Refsnes Data. All Rights Reserved.