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

Implemented by

Indexable

[name: string]: unknown

Properties

collisions: ICollisions
effect: IEffect
move: IMove
opacity: IOpacity
reduceDuplicates: boolean
shadow: IShadow
shape: IShape
size: ISize
zIndex: IZIndex