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.

13 lines (12 loc) 347 B
/** * Color animation interface, these properties are used to animate colors * @category Options */ import type { IAnimation } from "./IAnimation"; import type { RangeValue } from "../../Types"; export interface IColorAnimation extends IAnimation { /** * The value offset percent applied to color hue */ offset: RangeValue; }