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

    Module @tsparticles/preset-squares

    banner

    tsParticles Squares Preset

    jsDelivr npmjs npmjs GitHub Sponsors

    tsParticles preset creating a squares effect with falling particles.

    Discord Telegram

    tsParticles Product Hunt

    demo

    1. Install @tsparticles/engine (or use the CDN bundle below)
    2. Call loadSquaresPreset(tsParticles) before tsParticles.load(...)
    3. Set preset: "squares" in options
    <script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-squares@3/tsparticles.preset.squares.bundle.min.js"></script>
    

    Once the scripts are loaded you can set up tsParticles like this:

    (async () => {
    await loadSquaresPreset(tsParticles);

    await tsParticles.load({
    id: "tsparticles",
    options: {
    preset: "squares",
    },
    });
    })();

    Important ⚠️ You can override all the options defining the properties like in any standard tsParticles installation.

    tsParticles.load({
    id: "tsparticles",
    options: {
    particles: {
    shape: {
    type: "circle", // starting from v2, this require the circle shape script
    },
    },
    preset: "squares",
    },
    });

    Like in the sample above, the circles will be replaced by squares.

    Checkout the documentation in the component library repository and call the loadSquaresPreset function instead of loadFull, loadSlim or similar functions.

    The options shown above are valid for all the component libraries.

    This preset loads and combines the following packages:

    Package Role in this preset README
    @tsparticles/engine tsParticles engine and preset registration https://www.npmjs.com/package/@tsparticles/engine
    @tsparticles/plugin-emitters Spawns particles from configurable emitters https://www.npmjs.com/package/@tsparticles/plugin-emitters
    @tsparticles/plugin-hex-color Adds hex color parsing support https://www.npmjs.com/package/@tsparticles/plugin-hex-color
    @tsparticles/shape-square Adds square particle shape https://www.npmjs.com/package/@tsparticles/shape-square
    @tsparticles/updater-paint Animates paint/fill color properties https://www.npmjs.com/package/@tsparticles/updater-paint
    @tsparticles/updater-rotate Adds rotation animation https://www.npmjs.com/package/@tsparticles/updater-rotate
    @tsparticles/updater-size Animates particle size over time https://www.npmjs.com/package/@tsparticles/updater-size

    If you want to customize one specific behavior, start from the related package README above.

    • Calling tsParticles.load(...) before loadSquaresPreset(tsParticles)
    • The square shape is part of the bundle; when using engine-only builds, load the shape package separately
    • The preset uses a transparent background by default; set background.color if you need a solid backdrop

    flowchart TD
    
    subgraph b [Bundles]
    bb[tsParticles Engine]
    end
    
    subgraph pl [Plugins]
    ple[Emitters]
    pli[Interactivity]
    end
    
    bb --> pl
    
    subgraph s [Shapes]
    ssq[Square]
    end
    
    bb --> s
    
    subgraph u [Updaters]
    urot[Rotate]
    usi[Size]
    usc[Stroke Color]
    end
    
    bb --> u
    
    subgraph pr [Presets]
    prsn[Squares]
    end
    
    bb & ple & pli & ssq & urot & usi & usc --> prsn