mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
comments added
This commit is contained in:
parent
380b729692
commit
88d3de710a
2 changed files with 23 additions and 2 deletions
|
@ -19,23 +19,38 @@ import ICanvasEffect from '../ICanvasEffect';
|
|||
|
||||
export type FireworksOptions = {
|
||||
/**
|
||||
* the maximum number of the fireworks
|
||||
* max fireworks count
|
||||
*/
|
||||
maxCount: number,
|
||||
/**
|
||||
* the alpha opacity of the fireworks (between 0 and 1, where 1 is opaque and 0 is invisible)
|
||||
* gravity value that firework adds to shift from it's start position
|
||||
*/
|
||||
gravity: number,
|
||||
probability: number,
|
||||
}
|
||||
|
||||
type FireworksParticle = {
|
||||
/**
|
||||
* color
|
||||
*/
|
||||
color: string,
|
||||
/**
|
||||
* x,y are the point where the particle starts to position on canvas
|
||||
*/
|
||||
x: number,
|
||||
y: number,
|
||||
/**
|
||||
* vx,vy shift values from x and y
|
||||
*/
|
||||
vx: number,
|
||||
vy: number,
|
||||
/**
|
||||
* the alpha opacity of the firework particle (between 0 and 1, where 1 is opaque and 0 is invisible)
|
||||
*/
|
||||
alpha: number,
|
||||
/**
|
||||
* w,h width and height
|
||||
*/
|
||||
w: number,
|
||||
h: number
|
||||
}
|
||||
|
|
|
@ -66,7 +66,13 @@ type ConfettiOptions = {
|
|||
gradient: boolean,
|
||||
};
|
||||
type FireworksOptions = {
|
||||
/**
|
||||
* max fireworks count
|
||||
*/
|
||||
maxCount: number,
|
||||
/**
|
||||
* gravity value that firework adds to shift from it's start position
|
||||
*/
|
||||
gravity: number,
|
||||
probability: number,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue