@tsparticles/configs
Version:
tsParticles demo configurations
41 lines (40 loc) • 767 B
JavaScript
const options = {
key: "delayColor",
name: "Delay Color",
background: {
color: {
value: "#000",
},
},
particles: {
color: {
value: "#f00",
animation: {
enable: true,
speed: 50,
sync: true,
delay: {
min: 1,
max: 3,
},
},
},
number: {
value: 100,
},
size: {
value: 5,
},
opacity: {
value: 1,
},
move: {
enable: true,
},
links: {
enable: true,
color: "random",
},
},
};
export default options;