-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
52 lines (44 loc) · 1.25 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Snow :: Javascript and Canvas</title>
<style type="text/css">
body {
margin:0;
padding:0;
}
#snowfall {
background-color: #030726;
background-image: -webkit-gradient(linear, left top, left bottom, from(#030726), to(#0B1A58));
background-image: -webkit-linear-gradient(top, #030726, #0B1A58);
background-image: -moz-linear-gradient(top, #030726, #0B1A58);
background-image: -ms-linear-gradient(top, #030726, #0B1A58);
background-image: -o-linear-gradient(top, #030726, #0B1A58);
background-image: linear-gradient(to bottom, #030726, #0B1A58);
}
</style>
<script>
var init = function(){
// Resize the canvases)
var canvas = document.getElementById("snowfall");
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
// Now the emitter
var emitter = Object.create(rectangleEmitter);
emitter.setCanvas(canvas);
emitter.setBlastZone(0, -10, canvas.width, 1);
emitter.particle = snow;
emitter.runAhead(60);
emitter.start(30);
};
</script>
<script src="rectangleEmitter.js"></script>
<script src="snow.js"></script>
</head>
<body onLoad="init()">
<div id="container">
<canvas id="snowfall"></canvas>
</div>
</body>
</html>