UNPKG

@tsparticles/configs

Version:

tsParticles demo configurations

68 lines (67 loc) 1.42 kB
const options = { key: "soundsAudio", name: "Sounds Audio", particles: { number: { value: 0, }, color: { value: "#ff0000", animation: { enable: true, speed: 120, sync: true, }, }, shape: { type: "circle", }, opacity: { value: 1, }, size: { value: { min: 3, max: 6, }, }, move: { enable: true, speed: 6, direction: "none", outModes: "destroy", }, }, background: { color: "#000000", }, emitters: { position: { x: 50, y: 50, }, rate: { quantity: 1, delay: 0.3, }, size: { width: 0, height: 0, }, }, sounds: { enable: true, events: [ { event: "particleRemoved", audio: [ "https://particles.js.org/audio/explosion0.mp3", "https://particles.js.org/audio/explosion1.mp3", "https://particles.js.org/audio/explosion2.mp3", ], }, ], volume: 100, }, }; export default options;