tsparticles-interaction-light
TypeScript icon, indicating that this package has built-in type declarations

2.10.1 • Public • Published

banner

tsParticles Light Interaction

jsDelivr npmjs npmjs GitHub Sponsors

tsParticles interaction plugin for light effect.

How to use it

CDN / Vanilla JS / jQuery

The CDN/Vanilla version JS has one required file in vanilla configuration:

Including the tsparticles.interaction.light.min.js file will export the function to load the interaction plugin:

loadLightInteraction

Usage

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

loadLightInteraction(tsParticles);

tsParticles.load("tsparticles", {
  /* options */
});

ESM / CommonJS

This package is compatible also with ES or CommonJS modules, firstly this needs to be installed, like this:

$ npm install tsparticles-interaction-light

or

$ yarn add tsparticles-interaction-light

Then you need to import it in the app, like this:

const { tsParticles } = require("tsparticles-engine");
const { loadLightInteraction } = require("tsparticles-interaction-light");

loadLightInteraction(tsParticles);

or

import { tsParticles } from "tsparticles-engine";
import { loadLightInteraction } from "tsparticles-interaction-light";

loadLightInteraction(tsParticles);

Install

npm i tsparticles-interaction-light

DownloadsWeekly Downloads

442

Version

2.10.1

License

MIT

Unpacked Size

352 kB

Total Files

77

Last publish

Collaborators

  • ar3s
  • matteobruni