UNPKG

react-snowfall

Version:

A react component that creates a snowfall effect

13 lines (11 loc) 273 B
export const snowfallBaseStyle: React.CSSProperties = { pointerEvents: 'none', backgroundColor: 'transparent', position: 'absolute', top: 0, left: 0, width: '100%', height: '100%', } // Target of 60 frames per second export const targetFrameTime = 1000 / 60