cahilfoley/react-snowfall

Snow animation does not continue beyond screen height

Opened this issue · 1 comments

The current implementation of the snow animation component only renders within the bounds of the screen height. The animation disappears after scrolling past the screen height. This behaviour limits the user experience and doesn't provide the desired effect of a continuous snow animation. Extend the functionality of the animation, so that it continues beyond the screen height, regardless of scroll position.

You can try:

<Snowfall
      style={{
          position: 'fixed',
          zIndex: '9999999',
      }}
      ...
 />