🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

riot-particles

Package Overview
Dependencies
Maintainers
2
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

riot-particles

Official tsParticles Riot Component - 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 Web Components, React, Vue.js (2.x and 3.

latest
Source
npmnpm
Version
2.9.3
Version published
Maintainers
2
Created
Source

banner

riot-particles

npm npm downloads GitHub Sponsors

Official tsParticles RiotJS component

Slack Discord Telegram

tsParticles Product Hunt

Installation

npm install riot-particles

or

yarn add riot-particles

Usage

<riot-particles
    id="tsparticles"
    options='{{
        background: {
            color: "#000"
        },
        fullScreen: {
            enable: true
        },
        particles: {
            links: {
                enable: true
            },
            move: {
                enable: true
            }
        }
    }}'
    particlesInit="{async (main) => {
        console.log(main);
        
        // this loads the tsparticles package bundle, it is the easiest method for getting everything ready
        // starting from v2 you can add only the features you need reducing the bundle size
        await loadFull(main); 
    }}"
    particlesLoaded="{(container) => console.log(container)}"
/>

<script>
    import RiotParticles from "riot-particles";
    import { loadFull } from "tsparticles";

    export default {
        components: {
            RiotParticles,
        },
    };
</script>

<!-- or -->

<riot-particles
    id="tsparticles"
    url="https://foo.bar/particles.json"
    particlesInit="{async (main) => {
        console.log(main);
        
        // this loads the tsparticles package bundle, it is the easiest method for getting everything ready
        // starting from v2 you can add only the features you need reducing the bundle size
        await loadFull(main); 
    }}"
    particlesLoaded="{(container) => console.log(container)}"
/>
/>

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

Keywords

front-end

FAQs

Package last updated on 12 Feb 2023

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