Simple library to make snowfall on your browser
https://nijeesh4all.github.io/snowfall/classes/src_snowflake.snowflake.html
https://unruffled-jepsen-423d54.netlify.app/
load the script like you would load any external libraries
<script src='./snow-flake.js'></script>
<script>
const { SnowFlake } = window.SnowFlake
# This is optional, if not provided default values will be used
# check documentation for more info
options = { color: 'red', max_z_index: 100 }
flake = new SnowFlake(options)
flake.animate()
</script>
<script>
const { SnowFlake, SnowFall } = window.SnowFlake
# This is optional, if not provided default values will be used
# check documentation for more info
options = { color: 'red', max_z_index: 100 }
SnowFlake.configure(options)
const flake_count = 100;
const fall = new SnowFall(flake_count)
fall.start()
</script>