interface SingularAnimationOptionsBase {
    duration: number;
    easing: TransitionTimingFunction;
    position: Position;
    renderedPosition: Position;
    style: any;
}

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.

position: Position

A position to which the elements will be animated.

renderedPosition: Position

A rendered position to which the elements will be animated.

style: any

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