Interface Animation

The animation spec.

interface Animation {
    duration: number;
    easing: Easing;
    startTime: number;
}

Hierarchy (view full)

Properties

duration: number

An animation duration in milliseconds.

easing: Easing

An easing function applied to this animation.

startTime: number

A timestamp when an animation has started.