-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbouncingBox.html
34 lines (34 loc) · 996 Bytes
/
bouncingBox.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
<html>
<head>
<meta charset="utf-8">
<title>Bouncing Box</title>
<link rel="stylesheet" type="text/css" href="/Users/newuser/Documents/web_design_files/Bouncing Box/assets/css/bouncingBox.css">
</head>
<body>
<h1>Bouncing Ball</h1>
<div id="boxArea">
<div id="box"></div>
</div>
<div class="ranges">
<label>Width: 0</label>
<input type="range" name="width">
<label class="valueLabel">50</label>
</div>
<div class="ranges">
<label>height: 0</label>
<input type="range" name="height">
<label class="valueLabel">50</label>
</div>
<div class="ranges">
<label>Speed X: 0</label>
<input type="range" name="xSpeed">
<label class="valueLabel">50</label>
</div>
<div class="ranges">
<label>Speed Y: 0</label>
<input type="range" name="ySpeed">
<label class="valueLabel">50</label>
</div>
<script type="text/javascript" src="/Users/newuser/Documents/web_design_files/Bouncing Box/assets/js/bouncingBox.js"></script>
</body>
</html>