@tsparticles/configs
Version:
tsParticles demo configurations
59 lines (39 loc) • 1.21 kB
Markdown
[](https://particles.js.org)
```bash
npm install --save-dev @tsparticles/configs
```
or
```bash
yarn add --dev @tsparticles/configs
```
or
```bash
pnpm add --save-dev @tsparticles/configs
```
```html
<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>
```
```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 });
})();
```
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.