Socket
Socket
Sign inDemoInstall

tsparticles-updater-gradient

Package Overview
Dependencies
1
Maintainers
2
Versions
82
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tsparticles-updater-gradient

tsParticles particles gradient updater


Version published
Weekly downloads
81
increased by35%
Maintainers
2
Install size
1.95 MB
Created
Weekly downloads
 

Changelog

Source

2.11.0 (2023-07-12)

Bug Fixes

  • fixed calc position function (adb0444)
  • fixed getPositionOrSize function (3e07525)
  • fixed issue with emitters (39c7d75)
  • fixed video export plugin (a3b371c)
  • removed console log, closes #5003 (f5f2706)

Features

  • added animated gif support to image drawer (c65f451)
  • added refresh flag for loading plugins, this will prevent multiple refresh of the instance (9d999d6)
  • added setLogger and getLogger functions, this will prevent console.log mistakenly left (38de76c)
  • added tree shaking (86806a6)
  • added video export plugin (527eb6f)
  • adding export plugins (4c1b5a6)
  • created rounded polygon shape (abee4dc)
  • export plugins completed, image and json (149b77d)
  • fixed export plugins (775e7bd)
  • improved new export function, using blob as output for all functions (df1c862)
  • improved new export function, using blob as output for all functions (3521561)

Readme

Source

banner

tsParticles Gradient Updater

jsDelivr npmjs npmjs GitHub Sponsors

tsParticles updater plugin for gradient animations.

How to use it

CDN / Vanilla JS / jQuery

The CDN/Vanilla version JS has one required file in vanilla configuration:

Including the tsparticles.updater.gradient.min.js file will export the function to load the updater plugin:

loadGradientUpdater

Usage

Once the scripts are loaded you can set up tsParticles and the updater plugin like this:

(async () => {
  await loadGradientUpdater(tsParticles);

  await tsParticles.load({
    id: "tsparticles",
    options: {
      /* options */
    },
  });
})();

ESM / CommonJS

This package is compatible also with ES or CommonJS modules, firstly this needs to be installed, like this:

$ npm install tsparticles-updater-gradient

or

$ yarn add tsparticles-updater-gradient

Then you need to import it in the app, like this:

const { tsParticles } = require("tsparticles-engine");
const { loadGradientUpdater } = require("tsparticles-updater-gradient");

(async () => {
  await loadGradientUpdater(tsParticles);
})();

or

import { tsParticles } from "tsparticles-engine";
import { loadGradientUpdater } from "tsparticles-updater-gradient";

(async () => {
  await loadGradientUpdater(tsParticles);
})();

Keywords

FAQs

Last updated on 12 Jul 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc