forked from lemontizz/convas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5-glass.html
80 lines (74 loc) · 1.61 KB
/
5-glass.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>glass</title>
<style>
body {
background: #fff;
}
#canvas {
margin-left: 10px;
margin-top: 10px;
background: #fff;
border: thin solid #aaa;
}
#glasspane {
position: absolute;
left: 50px;
top: 50px;
padding: 0 20px 10px 10px;
background: rgba(0,0,0,0.3);;
border: thin solid rgba(0,0,0,0.6);
color: #eee;
font-family: Droid Sans, Arial, Helvetica, sans-serif;
font-size: 12px;
cursor: pointer;
box-shadow: rgba(0,0,0,0.5) 5px 5px 20px;
}
#glasspane h2 {
font-weight: normal;
}
#glasspane .title {
font-size 2em;
color: rgba(255,255,0,0.8);;
}
#glasspane a:hover {
color: yellow;
}
#glasspane a {
text-decoration: none;
color: #ccc;
font-size: 3.5em;
}
#glasspane p {
margin: 10px;
color: rgba(65,65,220,1.0);;
font-size: 12pt;
font-family: Palatino, Arial,Helvetica,sans-serif;
}
</style>
</head>
<body>
<div id="glasspane">
<h2 class="title">Bouncing Balls</h2>
<p>One hundred balls bouncing</p>
<a href="" id="startButton">Start</a>
</div>
<canvas id="canvas" width="750" height="500"></canvas>
<script>
var context = document.getElementById('canvas').getContext('2d'),
startButton = document.getElementById('startButton'),
glasspane = document.getElementById('glasspane'),
paused = true;
startButton.onclick = function(e) {
e.preventDefault();
paused = !paused;
startButton.innerHTML = paused ? 'Start' : 'Stop';
}
glasspane.onmousedown = function(e) {
// e.preventDefault();
}
</script>
</body>
</html>