This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
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.KeyframeEffect()
KeyframeEffect
object instance, and also allows you to clone an existing keyframe effect object instance.This interface inherits some of its methods and properties from its parent, KeyframeEffectReadOnly
, and its grandparent AnimationEffectReadOnly
.
AnimationEffectReadOnly.timing
AnimationEffectTimingReadOnly
object associated with the animation containing all the animation's timing values.KeyframeEffectReadOnly.target
null
for animations that do not target a specific element.The following options are currently not shipped anywhere, but will be added in the near future.
KeyframeEffectReadOnly.iterationComposite
KeyframeEffectReadOnly.composite
KeyframeEffectReadOnly.spacing
KeyframeEffectReadOnly.getKeyframes()
KeyframeEffect.setKeyframes()
AnimationEffectReadOnly.getComputedTiming()
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:
var rabbitDownKeyframes = new KeyframeEffect( whiteRabbit, // element to animate [ { transform: 'translateY(0%)' }, // keyframe { transform: 'translateY(100%)' } // keyframe ], { duration: 3000, fill: 'forwards' } // keyframe options );
Specification | Status | Comment |
---|---|---|
Web Animations The definition of 'KeyframeEffect' in that specification. | Working Draft | Initial definition |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | (Yes) | 48 (48)[1] | No support | No support | No support |
composite , iterationComposite , and spacing options | No support | No support | No support | No support | No support |
Clone constructor (2nd type of constructor) | (Yes) | No support[2] | No support | No support | No support |
Feature | Android | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | 48.0 (48)[1] | No support | No support | No support |
composite , iterationComposite , and spacing options | No support | No support | No support | No support | No support | No support | No support |
Clone constructor (2nd type) | (Yes) | (Yes) | (Yes) | No support[2] | No support | No support | No support |
[1] The Web Animations API is only enabled by default in Firefox Developer Edition and Nightly builds. You can enable it in beta and release builds by setting the preference dom.animations-api.core.enabled
to true
, and can disable it in any Firefox version by setting this preference to false
.
[2] Only enabled in Firefox 52 Nightly and Dev edition. Turned off in Beta/release.
KeyframeEffectReadOnly
and its parent AnimationEffectReadOnly
.Animation
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/KeyframeEffect