tsParticles preset creating a squares effect with falling particles.
@tsparticles/engine (or use the CDN bundle below)loadSquaresPreset(tsParticles) before tsParticles.load(...)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.
tsParticles.load(...) before loadSquaresPreset(tsParticles)background.color if you need a solid backdropflowchart 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