UNPKG

tsparticles

Version:

Easily create highly customizable particle 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.

14 lines (13 loc) 418 B
import { Container } from "../Container"; import { Particle } from "../Particle"; import { IDelta } from "../Interfaces"; export declare class Mover { private readonly container; constructor(container: Container); move(particle: Particle, delta: IDelta): void; private moveParticle; private spin; private applyPath; private moveParallax; private getProximitySpeedFactor; }