@tsparticles/preset-squares
v4.2.0
Published
tsParticles squares preset
Keywords
Readme
tsParticles Squares Preset
tsParticles preset creating a squares effect with falling particles.
Sample
Quick checklist
- Install
@tsparticles/engine(or use the CDN bundle below) - Call
loadSquaresPreset(tsParticles)beforetsParticles.load(...) - Set
preset: "squares"in options
How to use it
CDN / Vanilla JS / jQuery
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-squares@4/tsparticles.preset.squares.bundle.min.js"></script>Usage
Once the scripts are loaded you can set up tsParticles like this:
(async () => {
await loadSquaresPreset(tsParticles);
await tsParticles.load({
id: "tsparticles",
options: {
preset: "squares",
},
});
})();Customization
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.
Frameworks with a tsParticles component library
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.
Dependencies
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.
Common pitfalls
- Calling
tsParticles.load(...)beforeloadSquaresPreset(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.colorif you need a solid backdrop
Related docs
- All presets catalog: https://github.com/tsparticles/presets
- Color formats: https://github.com/tsparticles/tsparticles/blob/main/markdown/Color.md
- Main tsParticles docs: https://particles.js.org/docs/
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



