@tsparticles/configs
Version:
tsParticles demo configurations
39 lines (38 loc) • 765 B
JavaScript
const options = {
key: "delaySize",
name: "Delay Size",
background: {
color: {
value: "#000",
},
},
particles: {
color: {
value: "#fff",
},
number: {
value: 100,
},
size: {
value: { max: 5, min: 0 },
animation: {
enable: true,
speed: 5,
sync: true,
delay: {
min: 1,
max: 3,
},
startValue: "max",
destroy: "min",
},
},
opacity: {
value: 1,
},
move: {
enable: true,
},
},
};
export default options;