UNPKG

@tsparticles/configs

Version:

tsParticles demo configurations

94 lines (93 loc) 2.47 kB
(function (factory) { if (typeof module === "object" && typeof module.exports === "object") { var v = factory(require, exports); if (v !== undefined) module.exports = v; } else if (typeof define === "function" && define.amd) { define(["require", "exports"], factory); } })(function (require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const options = { key: "seaAnemone", name: "Sea Anemone", particles: { color: { value: "#FF0000", }, move: { direction: "none", enable: true, outModes: { default: "destroy", }, path: { clamp: false, enable: true, delay: { value: 0, }, generator: "curvesPathGenerator", }, speed: 1, trail: { fill: { color: "#000" }, length: 30, enable: true, }, }, number: { density: { enable: true, }, value: 0, }, opacity: { value: 1, }, shape: { type: "circle", }, size: { value: { min: 1, max: 10, }, animation: { count: 1, startValue: "min", enable: true, speed: 10, sync: true, }, }, }, background: { color: "#000", }, emitters: { direction: "none", rate: { quantity: 5, delay: 0.3, }, size: { width: 0, height: 0, }, spawnColor: { value: "#ff0000", animation: { enable: true, speed: 10, }, }, position: { x: 50, y: 50, }, }, }; exports.default = options; });