vue-rewards
Version:
Vue-rewards lets you add micro-interactions to your app, and rewards users with the rain of confetti, emoji or balloons in seconds.
19 lines (16 loc) • 321 B
text/typescript
export type ParticlePhysics = {
x: number;
y: number;
z: number;
wobble: number;
velocity: number;
angle2D: number;
angle3D: number;
tiltAngle: number;
differentiator: number;
};
export interface Particle {
element: HTMLSpanElement;
physics: ParticlePhysics;
}
export type Particles = Particle[];