UNPKG

tsparticles

Version:

Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.

24 lines (23 loc) 578 B
/** * The options to set the particles in the background using CSS `fixed` position * The [[zIndex]] property sets the background CSS `z-index` property * [[include:Options/FullScreen.md]] * @category Options */ export class FullScreen { constructor() { this.enable = true; this.zIndex = 0; } load(data) { if (!data) { return; } if (data.enable !== undefined) { this.enable = data.enable; } if (data.zIndex !== undefined) { this.zIndex = data.zIndex; } } }