UNPKG

@tsparticles/configs

Version:

tsParticles demo configurations

66 lines (65 loc) 1.72 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: "reactDefaults", name: "React Defaults", particles: { number: { value: 40, }, color: { value: "#FFF", }, shape: { type: "circle", }, opacity: { value: { min: 0.1, max: 0.5, }, animation: { enable: true, speed: 1, sync: false, }, }, size: { value: 1, }, links: { enable: true, distance: 150, color: "#FFF", opacity: 0.6, width: 1, shadow: { enable: false, blur: 5, color: "lime", }, }, move: { enable: true, speed: 3, outModes: "bounce", }, collisions: { enable: true, }, }, background: { color: "#0d47a1", }, }; exports.default = options; });