New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

bigmouse-particles

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bigmouse-particles

A cheese plugin for Big Mouse

latest
Source
npmnpm
Version
0.0.2
Version published
Weekly downloads
5
-16.67%
Maintainers
1
Weekly downloads
 
Created
Source

Big Mouse Particles

A cheese plugin for Big Mouse

Do you like Gruyere Cheese ?

This provides beautiful particles visualizations for your data sources. Available axis are common properties as number of particles, size, color, and radius. Other possible properties coming soon are speed, brightness or distortion.

npm install bigmouse-particles

Example

Take a look at this working demo or check the example source code below.

// using npm (CommonJS)
import BigMouse form 'bigmouse';
import BigMouseParticles from 'bigmouse-particles';

Then use like this:

BigMouse.configure({

    // Declare plugins to use
    "plugins": {"particles": BigMouseParticles()}, 
    // What elements you want to pick up, defaults to all
    "selector": "a",
    // Run every time an element is found and calls the plugin to render
    "draw": (element, done) => {
    
        switch(element.href){
        
            case "...": done("particles", {size: 10, number: 50}); break;
            default: done();
        }
    }
});

Author

Made with ♡ by Zuri Pabón

Unlicensed.

Keywords

big

FAQs

Package last updated on 29 Jul 2016

Did you know?

Socket

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