diff options
Diffstat (limited to 'letitsnow/index.html')
-rw-r--r-- | letitsnow/index.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/letitsnow/index.html b/letitsnow/index.html new file mode 100644 index 0000000..a2c7779 --- /dev/null +++ b/letitsnow/index.html @@ -0,0 +1,57 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf8"> + <title>Let It Snow demo</title> + <script src="snow.js"></script> +<style> +body, +html{ + margin: 0; + padding: 0; + background-color: #000; + min-height: 100vh; + min-width: 100%; +} + +*{ + box-sizing: border-box; +} + +.canvas-container{ + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + margin: 0; + padding: 0; + overflow: hidden; +} + +#snow{ + position: absolute; + margin: 0; + padding: 0; + bottom: 0; +} +</style> + <script> + window.addEventListener("load", function(){ + letItSnow({ + 'max_particles': 200, + 'base_speed': 200, + 'max_xspeed': 300, + 'max_tradius': 20, + 'max_tduration': 5000, + 'interactive': true, + }); + }); + </script> + </head> + <body> + <div class="canvas-container"> + <canvas id="snow"></canvas> + </div> + </body> +</html> |