Particles

Bounce

See Particles Bounce documentation {@link IParticlesBounce | here}

Collisions

See Particles Collisions documentation {@link ICollisions | here}

Color

See Particles Color documentation {@link IAnimatableColor | here}

Destroy

See Particles Destroy documentation {@link IDestroy | here}

Groups

Life

See Particles Life documentation {@link ILife | here}

Links

See Particles Links documentation {@link ILinks | here}

Move

See Particles Move documentation {@link IMove | here}

Number

See Particles Number documentation {@link IParticlesNumber | here}

Opacity

See Particles Opacity documentation {@link IOpacity | here}

Orbit

See Particles Orbit documentation {@link IOrbit | here}

Reduce Duplicates

If set to true it reduces particles duplicates, picking particles configuration sequentially

Repulse

See Particles Repulse documentation {@link IParticlesRepulse | here}

Roll

See Particles Roll documentation {@link IRoll | here}

Rotate

See Particles Rotate documentation {@link IRotate | here}

Shadow

See Shadow documentation {@link IShadow | here}

Shape

See Shape documentation {@link IShape | here}

Size

See Particles Size documentation {@link ISize | here}

Stroke

See Particles Stroke documentation {@link IStroke | here}

Tilt

See Particles Tilt documentation {@link ITilt | here}

Twinkle

See Particles Twinkle documentation {@link ITwinkle | here}

Wobble

See Particles Wobble documentation {@link IWobble | here}

Z Index

See Particles Z Index documentation {@link IZIndex | here}

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

Options for customizing the behavior when a particle bounces

collisions: ICollisions

Particles collisions options

Particles color options

effect: IEffect

Particles effects options

Particles groups

Particles interactivity options, overrides general interactivity options

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

shadow: IShadow

Particles shadow options

shape: IShape

Particles shape options

size: ISize

Particles size options

Particles stroke options

zIndex: IZIndex

Particles z-index options