Element.animate()
, KeyframeEffect()
, and KeyframeEffect.setKeyframes()
all accept objects formatted to represent a set of keyframes. There are several options to this format, which are explained below.
Element.animate()
, KeyframeEffect()
, and KeyframeEffect.setKeyframes()
all accept objects formatted to represent a set of keyframes. There are several options to this format, which are explained below.
There are two different ways to format keyframes:
array
of objects (keyframes) consisting of properties and values to iterate over. This is the canonical format returned by the getKeyframes()
method. js
element.animate( [ { // from opacity: 0, color: "#fff", }, { // to opacity: 1, color: "#000", }, ], 2000, );
offset
value. js
element.animate( [{ opacity: 1 }, { opacity: 0.1, offset: 0.7 }, { opacity: 0 }], 2000, );
Note: offset
values, if provided, must be between 0.0 and 1.0 (inclusive) and arranged in ascending order.
easing
value as illustrated below. js
element.animate( [ { opacity: 1, easing: "ease-out" }, { opacity: 0.1, easing: "ease-in" }, { opacity: 0 }, ], 2000, );
easing
value specified on the options
argument, however, applies across a single iteration of the animation — for the entire duration. object
containing key-value pairs consisting of the property to animate and an array
of values to iterate over. js
element.animate( { opacity: [0, 1], // [ from, to ] color: ["#fff", "#000"], // [ from, to ] }, 2000, );
js
element.animate( { opacity: [0, 1], // offset: 0, 1 backgroundColor: ["red", "yellow", "green"], // offset: 0, 0.5, 1 }, 2000, );
offset
, easing
, and composite
(described below) may be specified alongside the property values. js
element.animate( { opacity: [0, 0.9, 1], offset: [0, 0.8], // Shorthand for [ 0, 0.8, 1 ] easing: ["ease-in", "ease-out"], }, 2000, );
null
values, the keyframes without specified offsets will be evenly spaced as with the array format described above. If there are too few easing
or composite
values, the corresponding list will be repeated as needed. In newer browser versions, you are able to set a beginning or end state for an animation only (i.e. a single keyframe), and the browser will infer the other end of the animation if it is able to. For example, consider this simple animation — the Keyframe object looks like so:
js
let rotate360 = [{ transform: "rotate(360deg)" }];
We have only specified the end state of the animation, and the beginning state is implied.
Keyframes may specify property-value pairs for any of the animatable CSS properties
. The property names are specified using camel case so for example background-color
becomes backgroundColor
and background-position-x
becomes backgroundPositionX
. Shorthand values such as margin
are also permitted.
Two exceptional CSS properties are:
float
, which must be written as cssFloat
since "float" is a reserved word in JavaScript. It's just for reference here, this will have no effect on animation since "float" is not an animatable CSS property.offset
, which must be written as cssOffset
since "offset" represents the keyframe offset as described below.The following special attributes may also be specified:
The offset of the keyframe specified as a number between 0.0
and 1.0
inclusive or null
. This is equivalent to specifying start and end states in percentages in CSS stylesheets using @keyframes
. If this value is null
or missing, the keyframe will be evenly spaced between adjacent keyframes.
The easing function used from this keyframe until the next keyframe in the series.
The KeyframeEffect.composite
operation used to combine the values specified in this keyframe with the underlying value. This will be auto
if the composite operation specified on the effect is being used.
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API/Keyframe_Formats