UNPKG

@tsparticles/configs

Version:

tsParticles demo configurations

69 lines (68 loc) 1.28 kB
const options = { key: "absorbers", name: "Absorbers", particles: { number: { value: 300, }, collisions: { enable: true, }, color: { value: "#ffffff", }, shape: { type: "circle", }, opacity: { value: { min: 0.1, max: 1, }, }, size: { value: { min: 1, max: 2, }, }, move: { enable: true, speed: 0.5, direction: "top", straight: true, warp: true, }, }, interactivity: { events: { onClick: { enable: true, mode: "push", }, }, modes: { push: { quantity: 10, }, }, }, absorbers: { draggable: true, size: { value: { min: 5, max: 10, }, limit: 10, }, position: { x: 50, y: 50, }, }, background: { color: "#0d47a1", }, }; export default options;