htmlcssreactjswebreact-particles-js

How to make particles.js fullscreen in React?


Here is a link to a working example of the site: https://codesandbox.io/s/eloquent-kapitsa-kk1ls

I have been trying to get the particles to travel the full height of the screen but I can not get them to go all the way to the bottom. I have tried changing the heights of different <div> elements and changing the way that the particles are rendered with no success.


Solution

  • Set a width and height prop on the Particles component to be 100 percent of the view width and height. (How to Use)

    <Particles width='100vw' height="100vh" params={params} />
    

    Edit react-particles-js full height