-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (45 loc) · 1.11 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
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<title>PathFinding</title>
</head>
<body>
<div id="content">
<!-- grid -->
<canvas id="map" width="300" height="300"></canvas>
<!-- UI -->
<div id="ui-container-1">
<!-- squares -->
<div id="source" class="selection-square">
<div></div>Source
</div>
<div id="target" class="selection-square">
<div></div>Target
</div>
<div id="wall" class="selection-square">
<div></div>Wall
</div>
<div id="empty" class="selection-square">
<div></div>Empty
</div>
<!-- buttons -->
<button id="controls" class="ui-btn">Controls</button>
<button id="clear" class="ui-btn">Clear All</button>
<button id="run" class="ui-btn">Run</button>
</div>
<div id="ui-container-2">
<div id="animate">
<input id="anim-check" type="checkbox" checked>
<span>Animate</span>
</div>
<div id="console"></div>
</div>
</div>
<!-- logic -->
<script src="Node.js"></script>
<script src="AStarSearch.js"></script>
<script src="script.js"></script>
</body>
</html>