The KeyframeEffect
interface of the Web Animations API lets us create sets of animatable properties and values, called keyframes. These can then be played using the Animation()
constructor.
The KeyframeEffect
interface of the Web Animations API lets us create sets of animatable properties and values, called keyframes. These can then be played using the Animation()
constructor.
KeyframeEffect()
Returns a new KeyframeEffect
object instance, and also allows you to clone an existing keyframe effect object instance.
KeyframeEffect.target
Gets and sets the element, or originating element of the pseudo-element, being animated by this object. This may be null
for animations that do not target a specific element or pseudo-element.
KeyframeEffect.pseudoElement
Gets and sets the selector of the pseudo-element being animated by this object. This may be null
for animations that do not target a pseudo-element.
KeyframeEffect.iterationComposite
Gets and sets the iteration composite operation for resolving the property value changes of this keyframe effect.
KeyframeEffect.composite
Gets and sets the composite operation property for resolving the property value changes between this and other keyframe effects.
This interface inherits some of its methods from its parent, AnimationEffect
.
AnimationEffect.getComputedTiming()
Returns the calculated, current timing values for this keyframe effect.
KeyframeEffect.getKeyframes()
Returns the computed keyframes that make up this effect along with their computed keyframe offsets.
AnimationEffect.getTiming()
Returns the object associated with the animation containing all the animation's timing values.
KeyframeEffect.setKeyframes()
Replaces the set of keyframes that make up this effect.
AnimationEffect.updateTiming()
Updates the specified timing properties.
In the Follow the White Rabbit example, the KeyframeEffect constructor is used to create a set of keyframes that dictate how the White Rabbit should animate down the hole:
js
const whiteRabbit = document.getElementById("rabbit"); const rabbitDownKeyframes = new KeyframeEffect( whiteRabbit, // element to animate [ { transform: "translateY(0%)" }, // keyframe { transform: "translateY(100%)" }, // keyframe ], { duration: 3000, fill: "forwards" }, // keyframe options ); const rabbitDownAnimation = new Animation( rabbitDownKeyframes, document.timeline, ); // Play rabbit animation rabbitDownAnimation.play();
Specification |
---|
Web Animations # the-keyframeeffect-interface |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
KeyframeEffect |
75 | 79 | 63 | No | 62 | 13.1 | 75 | 75 | 63 | 54 | 13.4 | 11.0 |
KeyframeEffect |
75 | 79 | 63 | No | 62 | 13.1 | 75 | 75 | 63 | 54 | 13.4 | 11.0 |
composite |
84 | 84 | 80 | No | 71 | 16 | 84 | 84 | 80 | 60 | 16 | 14.0 |
getKeyframes |
84 | 84 | 63 | No | 71 | 13.1 | 84 | 84 | 63 | 60 | 13.4 | 14.0 |
iterationComposite |
No | No | 80 | No | No | 16.4 | No | No | 80 | No | 16.4 | No |
pseudoElement |
84 | 84 | 75 | No | 71 | 14 | 84 | 84 | 79 | 60 | 14 | 14.0 |
setKeyframes |
84 | 84 | 63 | No | 71 | 13.1 | 84 | 84 | 63 | 60 | 13.4 | 14.0 |
target |
75 | 79 | 63 | No | 62 | 13.1 | 75 | 75 | 63 | 54 | 13.4 | 11.0 |
© 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/KeyframeEffect