tsparticles
Version:
Easily create highly customizable particle 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.
11 lines (10 loc) • 394 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.loadImageShape = void 0;
const ImageDrawer_1 = require("./ImageDrawer");
function loadImageShape(tsParticles) {
const imageDrawer = new ImageDrawer_1.ImageDrawer();
tsParticles.addShape("image", imageDrawer);
tsParticles.addShape("images", imageDrawer);
}
exports.loadImageShape = loadImageShape;
;