UNPKG

@tsparticles/configs

Version:

tsParticles demo configurations

81 lines (80 loc) 1.61 kB
const options = { key: "life", name: "Life", particles: { number: { value: 160, density: { enable: true, }, }, color: { value: "#ff0000", animation: { enable: true, speed: 20, sync: true, }, }, shape: { type: "circle", }, opacity: { value: 0.5, }, size: { value: { min: 1, max: 3, }, }, links: { enable: true, distance: 100, color: "#ffffff", opacity: 0.4, width: 1, }, move: { enable: true, speed: 6, }, life: { duration: { sync: false, value: 3, }, count: 0, delay: { value: { min: 1, max: 2, }, }, }, }, interactivity: { events: { onHover: { enable: true, mode: "repulse", }, onClick: { enable: true, mode: "push", }, }, modes: { repulse: { distance: 200, }, push: { quantity: 4, }, }, }, background: { color: "#000000", }, }; export default options;