This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The DocumentTimeline interface of the the Web Animations API represents animation timelines, including the default document timeline (accessed via Document.timeline).
Constructor
DocumentTimeline()- Creates a new
DocumentTimelineobject associated with the active document of the current browsing context.
Properties
This interface inherits its property from its parent, AnimationTimeline.
AnimationTimeline.currentTime- Returns the time value in milliseconds for this timeline or
nullif it is inactive.
Examples
We could share a single documentTimeline among multiple animations, thus allowing us to manipulate just that group of animations via their shared timeline. This bit of code would start all the cats animating 500 milliseconds into their animations:
var cats = document.querySelectorAll('.sharedTimelineCat');
cats = Array.prototype.slice.call(cats);
var sharedTimeline = new DocumentTimeline({ originTime: 500 });
cats.forEach(function(cat) {
var catKeyframes = new KeyframeEffect(cat, keyframes, timing);
var catAnimation = new Animation(catKeyframes, sharedTimeline);
catAnimation.play();
});
Specifications
| Specification | Status | Comment |
|---|---|---|
| Web Animations The definition of 'DocumentTimeline' in that specification. |
Working Draft | Editor's draft. |
Browser compatibility
| Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
| Basic support | 54 | ? | No | No | No | No |
DocumentTimeline constructor | 61 | No | 50 | No | ? | No |
| Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | Opera Android | iOS Safari | Samsung Internet |
|---|---|---|---|---|---|---|---|
| Basic support | 54 | 54 | ? | No | No | No | ? |
DocumentTimeline constructor | 61 | 61 | No | 50 | ? | No | ? |

