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.
18 lines (17 loc) • 402 B
TypeScript
import { RangeValue } from "../../Types";
export interface IAnimation {
count: RangeValue;
/**
* Enables/disables the animation
*/
enable: boolean;
/**
* Speed animation
*/
speed: RangeValue;
/**
* Enables the sync animations for the particles created at the same time
* pushed or emitter particles will be out of sync
*/
sync: boolean;
}