@tsparticles/configs
Version:
tsParticles demo configurations
51 lines (50 loc) • 1.01 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const options = {
key: "snow",
name: "Snow",
particles: {
number: {
value: 400,
density: {
enable: true,
},
},
color: {
value: "#fff",
},
shape: {
type: "circle",
},
opacity: {
value: 1,
},
size: {
value: 10,
},
move: {
enable: true,
speed: 2,
direction: "bottom",
straight: true,
},
wobble: {
enable: true,
distance: 10,
speed: 10,
},
zIndex: {
value: {
min: 0,
max: 100,
},
opacityRate: 10,
sizeRate: 10,
velocityRate: 10,
},
},
background: {
color: "#333333",
},
};
exports.default = options;