@tsparticles/configs
Version:
tsParticles demo configurations
49 lines (48 loc) • 970 B
JavaScript
const options = {
key: "shapeMultilineText",
name: "Shape Multiline Text",
particles: {
number: {
value: 80,
density: {
enable: true,
},
},
color: {
value: "#ff0000",
animation: {
enable: true,
speed: 20,
sync: true,
},
},
shape: {
type: "text",
options: {
text: {
value: "pippo\npluto",
},
},
},
opacity: {
value: {
min: 0.5,
max: 1,
},
},
size: {
value: {
min: 16,
max: 32,
},
},
move: {
enable: true,
speed: 6,
},
},
background: {
color: "#000000",
},
};
export default options;