Source code

Revision control

Copy as Markdown

Other Tools

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
// Source: Pointer-driven Animations (https://drafts.csswg.org/pointer-animations-1/)
enum PointerAxis {
"block",
"inline",
"x",
"y"
};
dictionary PointerTimelineOptions {
Element? source;
PointerAxis axis = "block";
};
[Exposed=Window]
interface PointerTimeline : AnimationTimeline {
constructor(optional PointerTimelineOptions options = {});
readonly attribute Element? source;
readonly attribute PointerAxis axis;
};