react-confetti

Confetti without the cleanup.

  • 所有者: alampros/react-confetti
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

react-confetti

Confetti without the cleanup. Demo

Build Status
npm
npm bundle size
npm type definitions

Based on a pen by @Gthibaud: https://codepen.io/Gthibaud/pen/ENzXbp

demogif

Install

npm install react-confetti

Use

width and height props are recommended. They will default to the initial window dimensions, but will not respond to resize events. It is recommended to provide the dimensions yourself. Here is an example using a hook:

import React from 'react'
import useWindowSize from 'react-use/lib/useWindowSize'
import Confetti from 'react-confetti'

export default () => {
  const { width, height } = useWindowSize()
  return (
    <Confetti
      width={width}
      height={height}
    />
  )
}

Props, Property, Type, Default, Description, ----------------, ---------------------, ---, ---, width, Number, window.innerWidth \, \, 300, Width of the <canvas> element., height, Number, window.innerHeight \, \, 200, Height of the <canvas> element., numberOfPieces, Number, 200, Number of confetti pieces at one time., confettiSource, { x: Number, y: Number, w: Number, h: Number }, {x: 0, y: 0, w: canvas.width, h:0}, Rectangle where the confetti should spawn. Default is across the top., friction, Number, 0.99, wind, Number, gravity, Number, 0.1, initialVelocityX, Number, 4, How fast confetti is emitted horizontally, initialVelocityY, Number, 10, How fast confetti is emitted vertically, colors, String[], ['#f44336''#e91e63''#9c27b0''#673ab7''#3f51b5''#2196f3''#03a9f4''#00bcd4''#009688''#4CAF50''#8BC34A''#CDDC39''#FFEB3B''#FFC107''#FF9800''#FF5722''#795548'], All available Colors for the confetti pieces., opacity, Number, 1.0, recycle, Bool, true, Keep spawning confetti after numberOfPieces pieces have been shown., run, Bool, true, Run the animation loop, tweenDuration, Number, 5000, How fast the confetti is added, tweenFunction, (currentTime: number, currentValue: number, targetValue: number, duration: number, s?: number) => number, easeInOutQuad, See tween-functions, drawShape, (context: CanvasRenderingContext2D) => void, undefined, See below, onConfettiComplete, (confetti: Confetti) => void, undefined, Called when all confetti has fallen off-canvas., # drawShape()

Draw a custom shape for a particle. If not provided, defaults to a random selection of a square, circle or strip confetto. The function is called with the canvas context as a parameter and the Particle as the this context.

For example, to draw all spirals:

<Confetti
  drawShape={ctx => {
    ctx.beginPath()
    for(let i = 0; i < 22; i++) {
      const angle = 0.35 * i
      const x = (0.2 + (1.5 * angle)) * Math.cos(angle)
      const y = (0.2 + (1.5 * angle)) * Math.sin(angle)
      ctx.lineTo(x, y)
    }
    ctx.stroke()
    ctx.closePath()
  }}
/>

主要指標

概覽
名稱與所有者alampros/react-confetti
主編程語言TypeScript
編程語言JavaScript (語言數: 2)
平台
許可證MIT License
所有者活动
創建於2016-04-19 17:15:08
推送於2025-05-19 14:03:16
最后一次提交2025-03-04 00:22:22
發布數44
最新版本名稱v6.4.0 (發布於 )
第一版名稱v1.0.1 (發布於 )
用户参与
星數1.6k
關注者數1
派生數108
提交數366
已啟用問題?
問題數73
打開的問題數2
拉請求數59
打開的拉請求數1
關閉的拉請求數46
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?