New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-confetti-boom

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-confetti-boom

A customizable React confetti explosion component for celebrations and special events

0.0.5
npm
Version published
Weekly downloads
4.8K
-23.33%
Maintainers
1
Weekly downloads
 
Created
Source

React Confetti Boom 🎉

NPM NPM Downloads License Size

React Confetti Boom 🎉 is a lightweight and customizable confetti animation component for React applications. Enhance user experience by adding a fun and engaging confetti effect to your app with just a few lines of code.

React Confetti Boom preview

Table of Contents

  • Installation
  • Usage
  • Demo
  • Props
  • Example
  • License

Installation

To install React Confetti Boom, run the following command:

npm install react-confetti-boom

Usage

Import the Confetti component and add it to your JSX.

import React from 'react';
import Confetti from 'react-confetti-boom';

function MyApp() {
  return (
    <div>
      <h1>My React App</h1>
      <Confetti />
    </div>
  );
}

export default MyApp;

Live Demo

You can check out the live demo of react-confetti-boom in action on the following page: https://almond-bongbong.github.io/react-confetti-boom/

The demo page provides an interactive way to customize the confetti settings, such as starting position, particle count, angle, shape size, and colors. This helps you visualize how the confetti effect will look in your own project.

Props

NameTypeDefaultDescription
xnumber0.5Horizontal starting position of confetti as a ratio of canvas width (0 to 1)
ynumber0.5Vertical starting position of confetti as a ratio of canvas height (0 to 1)
particleCountnumber30Number of confetti particles to generate
degnumber270Initial angle (in degrees) at which particles are emitted
shapeSizenumber12Size of confetti particles
spreadDegnumber30Angle (in degrees) that particles can deviate from the initial angle (deg)
effectIntervalnumber3000Interval (in ms) between consecutive confetti bursts
effectCountnumber1Number of confetti bursts to render
colorsstring[]['#ff577f', '#ff884b', '#ffd384', '#fff9b0']Array of colors for confetti particles, in hex format
launchSpeednumber1Initial speed at which particles are launched

Example

import React from 'react';
import Confetti from 'react-confetti-boom';

function Celebration() {
  return (
    <div>
      <h1>Congratulations!</h1>
      <Confetti
        x={0.5}
        y={0.1}
        particleCount={50}
        deg={270}
        shapeSize={8}
        spreadDeg={45}
        effectInterval={2000}
        effectCount={3}
        colors={['#ff577f', '#ff884b', '#ffd384', '#fff9b0', '#3498db']}
      />
    </div>
  );
}

export default Celebration;

This example will render a confetti animation with 50 particles starting at 10% from the top of the canvas. The particles will be emitted at a 270-degree angle, with a 45-degree spread. The confetti bursts will occur every 2 seconds, for a total of 3 bursts. The confetti particles will use the provided array of colors.

License

This project is licensed under the terms of the MIT License.

Keywords

react

FAQs

Package last updated on 21 Apr 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