tsParticles - v4.0.0-beta.12
    Preparing search index...

    Particle numeric value animation state with min/max bounds

    interface IParticleNumericValueAnimation {
        decay?: number;
        delayTime?: number;
        enable: boolean;
        initialValue?: number;
        loops?: number;
        max: number;
        maxLoops?: number;
        min: number;
        status?: AnimationStatus;
        time?: number;
        value: number;
        velocity?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    decay?: number

    Value decay factor applied each frame

    delayTime?: number

    Delay before the animation starts, in seconds

    enable: boolean

    Enables or disables the animation

    initialValue?: number

    The initial value before any animation is applied

    loops?: number

    Current loop count

    max: number

    Maximum value

    maxLoops?: number

    Maximum number of loops before the animation stops

    min: number

    Minimum value

    Current animation status (increasing, decreasing, or none)

    time?: number

    Elapsed time since the animation started

    value: number

    Current animated value

    velocity?: number

    Animation velocity per frame