The quickTo callback function returned from AnimationAPI.quickTo.

interface QuickToCallback {
    keys: AnimationKey[];
    options: (options: QuickTweenOptions) => QuickToCallback;
    (...args: (string | number)[]): void;
    (arg: Partial<{ [key in AnimationKey]: string | number }>): void;
}
Hierarchy
  • Parameters

    • ...args: (string | number)[]

      Individual numbers or relative strings corresponding to the order in which animation keys are specified.

    Returns void

  • Parameters

    • arg: Partial<{ [key in AnimationKey]: string | number }>

      A single object with animation keys specified and numerical or relative string values.

    Returns void

Index

Properties

Properties

keys: AnimationKey[]

The keys assigned for this quickTo callback.

options: (options: QuickTweenOptions) => QuickToCallback

Sets options of quickTo tween.

Type Declaration