Socket
Socket
Sign inDemoInstall

react-canvas-confetti

Package Overview
Dependencies
5
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-canvas-confetti

React component for canvas-confetti library


Version published
Weekly downloads
61K
increased by2.89%
Maintainers
1
Install size
173 kB
Created
Weekly downloads
 

Readme

Source

react-canvas-confetti

The React component for canvas-confetti library. In the demo version, you can play with the settings and see examples.

npm NPM

GIF-confetti

Installation

npm i react-canvas-confetti

:exclamation: It is expected that the react is already installed as peer dependency.

Usage

I recommend that you first familiarize yourself with the canvas-confetti library to better understand exactly how this module works.

There are two ways to use this module:

Working with Presets

A preset is an animation template that is already ready to use. Presets allow you to customize animation settings, but do not allow you to change the animation algorithm. Using presets is an easier way to work with the module.

An example of the minimum required code:
import Fireworks from "react-canvas-confetti/dist/presets/fireworks";

function Example() {
  return <Fireworks autorun={{ speed: 3 }} />;
}

export default Example;

Live example

Conductor Instance

The preset working can be controlled manually using the Conductor instance. This object allows you to start and stop animations on demand. Conductor can be accessed in the onInit callback. The interface of the object is shown below:

type TRunAnimationParams = {
  speed: number;
  duration?: number;
  delay?: number;
};

type TConductorInstance = {
  run: (params: TRunAnimationParams) => void;
  shoot: () => void;
  pause: () => void;
  stop: () => void;
};

Working with the canvas-confetti instance

Working with an instance is working with the module at a lower level. This is a more powerful approach that allows you to create your own animation algorithms, but requires more effort.

Canvas-confetti instance

Confetti object, which will be received as a result of calling the function create. Gives you full control to create your own animations. Confetti can be accessed in the onInit callback. The interface can be viewed here

API

Base API

The common settings are relevant for all use cases

NameTypeDescription
widthstring | numbervalue is responsible for the width of the canvas. Alternative ways to control canvas sizes are className and style props.
heightstring | numbervalue is responsible for the height of the canvas. Alternative ways to control canvas sizes are className and style props.
classNamestringvalue to set className to canvas element
styleCSSPropertiesvalue to set style to canvas element. If style and className are not passed, the default styles will be set
globalOptionsTGlobalOptionsglobal animation settings that cannot be changed after initialization (details)
onInit(params: {confetti: TCanvasConfettiInstance}) => voidthe callback is called when the component is mounted on the page and allows you to access confetti instance (details) for manual animation creation

Advanced API

Advanced settings only work for presets!

NameTypeDescription
autorun{ speed: number; duration?: number; delay?: number; }if it is passed, it automatically starts the animation when mounting the component on the page
decorateOptions(options: TOptions) => TOptionsthe callback allows you to customize the animation settings and is called for each step of the animation
onInit(params: { confetti: TCanvasConfettiInstance; conductor: TConductorInstance }) => voidthe callback is called when the component is mounted on the page and allows you to access objects for manual creation and animation control

Examples

Fireworks Preset

Crossfire Preset

Snow Preset

Realistic Preset

Explosion Preset

Pride Preset

Vortex Preset

Photons Preset

Manual Control

Decorating Options

Custom Stylization

Custom Animation

Keywords

FAQs

Last updated on 08 Mar 2024

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