tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
17 lines (16 loc) • 455 B
TypeScript
import type { Container } from "../Container";
import { Particle } from "../Particle";
export declare class Bubbler {
opacity?: number;
radius?: number;
private readonly particle;
private readonly container;
constructor(container: Container, particle: Particle);
bubble(): void;
private init;
private process;
private clickBubble;
private hoverBubble;
private hoverBubbleSize;
private hoverBubbleOpacity;
}