Interface TweenAnimation

A value animation from startValue to endValue.

interface TweenAnimation {
    duration: number;
    easing: Easing;
    endValue: number;
    startTime: number;
    startValue: number;
}

Hierarchy (view full)

Properties

duration: number

An animation duration in milliseconds.

easing: Easing

An easing function applied to this animation.

endValue: number

A value at which an animation ends.

startTime: number

A timestamp when an animation has started.

startValue: number

A value from which an animation starts.