forked from joshdon/ProjectSand
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (84 loc) · 3.2 KB
/
index.html
File metadata and controls
90 lines (84 loc) · 3.2 KB
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
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" type="text/css" href="styles.css" media="screen" />
<title>Project Sand</title>
<meta name="keywords" content="sand, falling, game" />
<meta name="description" content="Project Sand: A modern version of the classic Hell of Sand Falling Game" />
<meta name="subject" content="Project Sand" />
<meta charset="UTF-8">
<meta name="google" content="notranslate">
<link rel="icon" href="assets/favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
</head>
<div class="wrapper" id="gameWrapper">
<div id="titleWrapper">
<h1 class="title">Project Sand</h1>
<div class="subheader">
<div class="column-left">
<a href="https://github.com/seankid/ProjectSand" target="_blank">Source Code:credit to joshdon for orginal project</a>
</div>
<div class="column-center">
By: Sean Ding
</div>
<div class="column-right">
<a href="Burrito Bison" target="_blank">https://seankid.github.io/BackupBranch/</a>
</div>
</div>
</div>
<canvas id="mainCanvas">Your browser doesn't support HTML5 canvas.</canvas>
<div id="menuWrapper">
<table id="elementTable">
</table>
<div id="optionsCol1" class="optionsCol">
<div id="penSizeDiv">
<label for="pensize">Pen Size</label>
<select id="pensize"></select>
</div>
<div>
<select id="spigot1Type" class="spigotType"></select>
<select id="spigot1Size"></select>
</div>
<div>
<select id="spigot2Type" class="spigotType"></select>
<select id="spigot2Size"></select>
</div>
<div>
<select id="spigot3Type" class="spigotType"></select>
<select id="spigot3Size"></select>
</div>
<div>
<select id="spigot4Type" class="spigotType"></select>
<select id="spigot4Size"></select>
</div>
</div>
<div id="optionsCol2" class="optionsCol">
<div>
<label for="overwriteCheckbox">Overwrite</label>
<input type="checkbox" id="overwriteCheckbox">
</div>
<div id="speedSliderDiv">
<label for="speedSlider">Speed</label>
<input type="range" id="speedSlider">
</div>
<div class="optionButtonContainer">
<input id="saveButton" class="optionButton" type="button" value="Save">
<input id="loadButton" class="optionButton" type="button" value="Load">
</div>
<div id="clearButtonDiv" class="optionButtonContainer">
<input id="clearButton" class="optionButton" type="button" value="Clear">
</div>
</div>
<div id="fps-counter">
</div>
</div>
</div>
<script type="text/javascript" src="scripts/util.js"></script>
<script type="text/javascript" src="scripts/canvasConfig.js"></script>
<script type="text/javascript" src="scripts/cursor.js"></script>
<script type="text/javascript" src="scripts/particles.js"></script>
<script type="text/javascript" src="scripts/elements.js"></script>
<script type="text/javascript" src="scripts/spigots.js"></script>
<script type="text/javascript" src="scripts/menu.js"></script>
<script type="text/javascript" src="scripts/game.js"></script>
</html>