This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The Animation.timeline property of the Animation interface returns or sets the timeline associated with this animation. A timeline is a source of time values for synchronization purposes, and is an AnimationTimeline-based object. By default, the animation's timeline and the Document's timeline are the same.
Syntax
var animationsTimeline = Animation.timeline; Animation.timeline = newTimeline;
Value
A timeline object to use as the timing source for the animation, or null to use the default, which is the Document's timeline.
Examples
Here we set the animation's timeline to be the same as the document's timeline (this is the default timeline for all animations, by the way):
animation.timeline = document.timeline;
Specifications
| Specification | Status | Comment |
|---|---|---|
| Web Animations The definition of 'Animation.timeline' in that specification. |
Working Draft | Editor's draft. |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
timeline | Chrome
No support
No
| Edge No support No | Firefox
Full support
75
| IE No support No | Opera No support No | Safari
Full support
13.1
| WebView Android No support No | Chrome Android
No support
No
| Firefox Android
Full support
63
| Opera Android No support No | Safari iOS
Full support
13.4
| Samsung Internet Android No support No |
Legend
- Full support
- Full support
- No support
- No support
- Experimental. Expect behavior to change in the future.
- Experimental. Expect behavior to change in the future.
- See implementation notes.
- See implementation notes.
- User must explicitly enable this feature.
- User must explicitly enable this feature.
See also
- Web Animations API
AnimationAnimationTimelinethe parent object all timelines inherit from.DocumentTimelinethe only kind of timeline object available at this time.Document.timelineis the default timeline all animations are assigned.
