@tsparticles/configs
Version:
tsParticles demo configurations
41 lines (40 loc) • 851 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const options = {
key: "delayOpacity",
name: "Delay Opacity",
background: {
color: {
value: "#000",
},
},
particles: {
color: {
value: "#fff",
},
number: {
value: 100,
},
opacity: {
value: { max: 1, min: 0 },
animation: {
enable: true,
speed: 5,
sync: true,
delay: {
min: 1,
max: 3,
},
startValue: "max",
destroy: "min",
},
},
size: {
value: 5,
},
move: {
enable: true,
},
},
};
exports.default = options;