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.

16 lines (15 loc) 374 B
import type { IColor } from "../../../Core/Interfaces/Colors"; /** * The background cover customization * @category Options */ export interface IBackgroundMaskCover { /** * The background color hiding all elements behind, string or [[IColor]] value. */ color: IColor | string; /** * The opacity of the background */ opacity: number; }