tsParticles updater plugin for opacity animations.
- Install
@tsparticles/engine(or use the CDN bundle below) - Call the package loader function(s) before
tsParticles.load(...) - Apply the package options in your
tsParticles.load(...)config
The CDN/Vanilla version JS has one required file in vanilla configuration:
Including the tsparticles.updater.opacity.min.js file will export the function to load the updater plugin:
loadOpacityUpdater;Once the scripts are loaded you can set up tsParticles and the updater plugin like this:
(async () => {
await loadOpacityUpdater(tsParticles);
await tsParticles.load({
id: "tsparticles",
options: {
/* options */
},
});
})();This package is compatible also with ES or CommonJS modules, firstly this needs to be installed, like this:
$ npm install @tsparticles/updater-opacityor
$ yarn add @tsparticles/updater-opacityThen you need to import it in the app, like this:
const { tsParticles } = require("@tsparticles/engine");
const { loadOpacityUpdater } = require("@tsparticles/updater-opacity");
(async () => {
await loadOpacityUpdater(tsParticles);
})();or
import { tsParticles } from "@tsparticles/engine";
import { loadOpacityUpdater } from "@tsparticles/updater-opacity";
(async () => {
await loadOpacityUpdater(tsParticles);
})();- Primary options key:
particles.opacity
{
"particles": {
"opacity": {}
}
}- Calling
tsParticles.load(...)beforeloadOpacityUpdater(...) - Verify required peer packages before enabling advanced options
- Change one option group at a time to isolate regressions quickly
- All packages catalog: https://github.com/tsparticles/tsparticles
- Main docs: https://particles.js.org/docs/
