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.
12 lines (11 loc) • 376 B
TypeScript
import { ExternalInteractorBase } from "../../../Core";
import type { Container } from "../../../Core";
export declare class Bouncer extends ExternalInteractorBase {
constructor(container: Container);
isEnabled(): boolean;
interact(): Promise<void>;
reset(): void;
private processMouseBounce;
private singleSelectorBounce;
private processBounce;
}