jquery-particles

2.9.3 • Public • Published

banner

jquery-particles

npm npm GitHub Sponsors

Official tsParticles jQuery plugin

Slack Discord Telegram

tsParticles Product Hunt

Installation

$ npm install jquery-particles

or

$ yarn add jquery-particles

or from jsDelivr

jsDelivr

<!-- first include tsParticles engine -->
<script src="https://cdn.jsdelivr.net/npm/tsparticles-engine"></script>

<!-- then include any tsParticles plugin needed -->
<script src="https://cdn.jsdelivr.net/npm/tsparticles/tsparticles.bundle.min.js"></script>

<!-- then include jquery wrapper -->
<script src="https://cdn.jsdelivr.net/npm/jquery-particles"></script>

How to use

HTML

<div id="tsparticles"></div>
// this loads the tsparticles package bundle, it's the easiest method for getting everything ready
// starting from v2 you can add only the features you need reducing the bundle size
$(document).ready(async function () {
    await loadFull(tsParticles);

    $("#tsparticles")
        .particles()
        .init(
            {
                background: {
                    color: {
                        value: "#0d47a1",
                    },
                },
                fpsLimit: 120,
                interactivity: {
                    events: {
                        onClick: {
                            enable: true,
                            mode: "push",
                        },
                        onHover: {
                            enable: true,
                            mode: "repulse",
                        },
                        resize: true,
                    },
                    modes: {
                        push: {
                            quantity: 4,
                        },
                        repulse: {
                            distance: 200,
                            duration: 0.4,
                        },
                    },
                },
                particles: {
                    color: {
                        value: "#ffffff",
                    },
                    links: {
                        color: "#ffffff",
                        distance: 150,
                        enable: true,
                        opacity: 0.5,
                        width: 1,
                    },
                    collisions: {
                        enable: true,
                    },
                    move: {
                        direction: "none",
                        enable: true,
                        outModes: {
                            default: "bounce",
                        },
                        random: false,
                        speed: 6,
                        straight: false,
                    },
                    number: {
                        density: {
                            enable: true,
                            area: 800,
                        },
                        value: 80,
                    },
                    opacity: {
                        value: 0.5,
                    },
                    shape: {
                        type: "circle",
                    },
                    size: {
                        value: { min: 1, max: 5 },
                    },
                },
                detectRetina: true,
            },
            function (container) {
                // container is the particles container where you can play/pause or stop/start.
                // the container is already started, you don't need to start it manually.
            }
        );

    // or

    $("#tsparticles")
        .particles()
        .ajax("particles.json", function (container) {
            // container is the particles container where you can play/pause or stop/start.
            // the container is already started, you don't need to start it manually.
        });
});

Demos

The demo website is here

https://particles.js.org

There's also a CodePen collection actively maintained and updated here

https://codepen.io/collection/DPOage

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
2.9.312latest
2.0.0-beta.40beta
2.0.0-alpha.72alpha
2.0.41next

Version History

VersionDownloads (Last 7 Days)Published
2.9.312
2.9.20
2.9.10
2.9.00
2.8.023
2.7.12
2.7.01
2.6.00
2.5.30
2.5.21
2.5.10
2.5.01
2.4.01
2.3.30
2.3.21
2.3.12
2.3.01
2.2.40
2.2.33
2.2.20
2.2.10
2.2.01
2.1.41
2.1.31
2.1.20
2.1.11
2.1.01
2.0.61
2.0.50
2.0.41
2.0.31
2.0.20
2.0.10
2.0.01
2.0.0-beta.40
2.0.0-beta.30
2.0.0-beta.21
2.0.0-beta.11
2.0.0-alpha.72
2.0.0-alpha.63
2.0.0-alpha.53
2.0.0-alpha.42
2.0.0-alpha.32
2.0.0-alpha.23
2.0.0-alpha.13
2.0.0-alpha.03

Package Sidebar

Install

npm i jquery-particles

Weekly Downloads

463

Version

2.9.3

License

MIT

Unpacked Size

16.6 kB

Total Files

9

Last publish

Collaborators

  • ar3s
  • matteobruni