Md. A. Apu
Md. A. Apu

Reputation: 1250

React tsParticles (fireworks) not working

I'm trying to use react-tsParticle. I'm interested in the "Fireworks preset" but unfortunately that is not working. I've seen some examples like this codepen one. But If I use that option/config that doesn't work. it created some fireworks blasts in the bottom but it's useless screenshot.

If I use like that codepen example it works. But that's not how it is meant to be used in react. Any help will be appreciated.

Upvotes: 1

Views: 290

Answers (1)

Try this options :

const options = {
preset: "fireworks",
sounds: {
  enable: true,
},
particles: {
  move: {
    speed: 1,
  },
},
interactivity: {
  detectsOn: "canvas",
  events: {
    resize: true,
    click: {
      enable: true,
      mode: "push",
    },
  },
},
maxParticles: 3,
fpsLimit: 60,
emitters: [
  {
    direction: "top",
    life: {
      count: 1000,
      duration: 0.2,
      delay: 1,
    },
  },
],
};

Upvotes: 0

Related Questions