3.3.0 • Published 2 months ago

@tsparticles/configs v3.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

banner

tsParticles Demo Configs

Installation

npm install --save-dev @tsparticles/configs

or

yarn add --dev @tsparticles/configs

or

pnpm add --save-dev @tsparticles/configs

CDN

<script src="https://cdn.jsdelivr.net/npm/@tsparticles/engine/tsparticles.engine.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/configs/tsparticles.configs.min.js"></script>

Usage

JavaScript

import { tsParticles } from "@tsparticles/engine"; // not needed with CDN
import * as configs from "@tsparticles/configs"; // not needed with CDN

(async () => {
  await tsParticles.load({ id: "tsparticles", options: configs.basic });
})();

TypeScript

import { tsParticles } from "@tsparticles/engine";
import * as configs from "@tsparticles/configs";

(async () => {
  await tsParticles.load({ id: "tsparticles", options: configs.basic });
})();

Plugins

Some configs need plugins to work, they are not installed with this library.

This library contains only the config files, the plugins must be installed separately.