AngularTS
    Preparing search index...

    Interface NativeAnimationOptions

    interface NativeAnimationOptions {
        addClass?: string;
        animation?: string;
        composite?: CompositeOperation;
        delay?: number;
        direction?: PlaybackDirection;
        duration?: string | number | CSSNumericValue;
        easing?: string;
        endDelay?: number;
        enter?: Keyframe[] | PropertyIndexedKeyframes;
        fill?: FillMode;
        from?: Record<string, string | number>;
        id?: string;
        iterationComposite?: IterationCompositeOperation;
        iterations?: number;
        iterationStart?: number;
        keyframes?: Keyframe[] | PropertyIndexedKeyframes;
        leave?: Keyframe[] | PropertyIndexedKeyframes;
        move?: Keyframe[] | PropertyIndexedKeyframes;
        onCancel?: AnimationLifecycleCallback;
        onDone?: AnimationLifecycleCallback;
        onStart?: AnimationLifecycleCallback;
        playbackRate?: number;
        pseudoElement?: string | null;
        removeClass?: string;
        tempClasses?: string | string[];
        timeline?: AnimationTimeline | null;
        to?: Record<string, string | number>;
    }

    Hierarchy

    • KeyframeAnimationOptions
      • NativeAnimationOptions
    Index

    Properties

    addClass?: string
    animation?: string
    composite?: CompositeOperation
    delay?: number
    direction?: PlaybackDirection
    duration?: string | number | CSSNumericValue
    easing?: string
    endDelay?: number
    enter?: Keyframe[] | PropertyIndexedKeyframes
    fill?: FillMode
    from?: Record<string, string | number>
    id?: string
    iterationComposite?: IterationCompositeOperation
    iterations?: number
    iterationStart?: number
    keyframes?: Keyframe[] | PropertyIndexedKeyframes
    leave?: Keyframe[] | PropertyIndexedKeyframes
    move?: Keyframe[] | PropertyIndexedKeyframes
    playbackRate?: number
    pseudoElement?: string | null
    removeClass?: string
    tempClasses?: string | string[]
    timeline?: AnimationTimeline | null
    to?: Record<string, string | number>