interface ElementAnimateOptionsBase {
    duration?: number;
    easing?: TransitionTimingFunction;
    queue?: boolean;
    style?: {
        [name: string]: any;
    };
    complete?(): void;
    step?(): void;
}

Hierarchy (view full)

Properties

duration?: number

The duration of the animation in milliseconds.

A transition-timing-function easing style string that shapes the animation progress curve.

queue?: boolean

A boolean indicating whether to queue the animation.

style?: {
    [name: string]: any;
}

An object containing name-value pairs of style properties to animate.

Methods