UNPKG

tsparticles-engine

Version:

Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.

50 lines (49 loc) 1.63 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", "../OptionsColor"], factory); } })(function (require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Background = void 0; const OptionsColor_1 = require("../OptionsColor"); class Background { constructor() { this.color = new OptionsColor_1.OptionsColor(); this.color.value = ""; this.image = ""; this.position = ""; this.repeat = ""; this.size = ""; this.opacity = 1; } load(data) { if (!data) { return; } if (data.color !== undefined) { this.color = OptionsColor_1.OptionsColor.create(this.color, data.color); } if (data.image !== undefined) { this.image = data.image; } if (data.position !== undefined) { this.position = data.position; } if (data.repeat !== undefined) { this.repeat = data.repeat; } if (data.size !== undefined) { this.size = data.size; } if (data.opacity !== undefined) { this.opacity = data.opacity; } } } exports.Background = Background; });