tsParticles - v0.0.0
    Preparing search index...

    [[include:Options/Particles.md]]

    interface IParticlesOptions {
        bounce: IParticlesBounce;
        color: IAnimatableColor;
        effect: IEffect;
        groups: ParticlesGroups;
        move: IMove;
        number: IParticlesNumber;
        opacity: IOpacity;
        reduceDuplicates: boolean;
        shape: IShape;
        size: ISize;
        stroke: SingleOrMultiple<IStroke>;
        zIndex: IZIndex;
        [name: string]: unknown;
    }

    Implemented by

    Indexable

    • [name: string]: unknown
    Index

    Properties

    Options for customizing the behavior when a particle bounces

    Particles color options

    effect: IEffect

    Particles effects options

    Particles groups

    move: IMove

    Particles movement options

    Particles number options

    opacity: IOpacity

    Particles opacity options

    reduceDuplicates: boolean

    Particles options for reducing the randomization of duplicate particles, the index will be used for choosing the array values

    shape: IShape

    Particles shape options

    size: ISize

    Particles size options

    Particles stroke options

    zIndex: IZIndex

    Particles z-index options