Trilium Frontend API
    Preparing search index...

    Interface DocumentTimeline

    The DocumentTimeline interface of the Web Animations API represents animation timelines, including the default document timeline (accessed via Document.timeline).

    MDN Reference

    interface DocumentTimeline {
        currentTime: CSSNumberish;
        duration: CSSNumberish;
    }

    Hierarchy (View Summary)

    Index

    Properties

    currentTime: CSSNumberish

    The currentTime read-only property of the Web Animations API's AnimationTimeline interface returns the timeline's current time in milliseconds, or null if the timeline is inactive.

    MDN Reference

    duration: CSSNumberish

    The duration read-only property of the Web Animations API's AnimationTimeline interface returns the maximum value for this timeline or null.

    MDN Reference