
snow.js is a vanilla JavaScript library to draw random snowflakes falling effects on an HTML5 canvas element.
How to use it:
Create an empty canvas element on which you want to draw the snow falling effect.
<canvas id="sky"></canvas>
Download and put the JavaScript file ‘snow.js’ at the bottom of the screen.
<script src="snow.js"></script>
That’s it. For better experience, I recommend you to change the background color of the whole body.
body {
background: #0F8A5F;
}







Nice one, thanks ;)