Type alias TAnimationBaseOptions<T>

TAnimationBaseOptions<T>: {
    delay: number;
    duration: number;
    easing: TEasingFunction<T>;
    target: unknown;
}

Type Parameters

  • T

Type declaration

  • delay: number

    Delay to start the animation in ms

    Default

    0
    
  • duration: number

    Duration of the animation in ms

    Default

    500
    
  • easing: TEasingFunction<T>

    Easing function

    Default

    {defaultEasing}
    
  • target: unknown

    The object this animation is being performed on

Generated using TypeDoc