hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface AnimationOptions

    Options for configuring an animation.

    interface AnimationOptions {
        delay?: number;
        duration: number;
        repeat?: boolean;
        reverse?: boolean;
        useCurrentState?: boolean;
    }
    Index

    Properties

    delay?: number

    Delay before the animation starts, in milliseconds.

    duration: number

    Duration of the animation in milliseconds.

    repeat?: boolean

    Whether to repeat the animation after each cycle.

    reverse?: boolean

    Whether to reverse the animation after each cycle.

    useCurrentState?: boolean

    Whether to use the current state of the view as the starting point.