-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (60 loc) · 2.25 KB
/
index.html
File metadata and controls
70 lines (60 loc) · 2.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pathfinding</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" href="style_mobile.css" type="text/css" media="only screen and (max-device-width: 720px)">
<script src="node.js"></script>
<script src="script.js"></script>
<script src="PriorityQueue.js"></script>
</head>
<body onload="init()">
<div id="topBar" style="text-align: center;">
<div id="menu">
<label for="algorithm">Pathfinding algorithm:</label>
<select id="algorithm">
<option value="A*">A*</option>
<option value="Dijkstra">Dijkstra</option>
</select>
<button onclick="Visualize()">Visualize</button>
<button onclick="Clear('full')">Clear</button>
</div>
<div id="legend">
<div class="legend_element">
<div class="square" style="background: #27ae60;"></div>
<span class="desc">Start</span>
</div>
<div class="legend_element">
<div class="square" style="background: #e74c3c;"></div>
<span class="desc">Target</span>
</div>
<div class="legend_element">
<div class="square" style="background: #1e272e;"></div>
<span class="desc">Wall</span>
</div>
<div class="legend_element">
<div class="square" style="background: #ecf0f1;"></div>
<span class="desc">Empty</span>
</div>
<div class="legend_element">
<div class="square" style="background: #8e44ad;"></div>
<span class="desc">Closed</span>
</div>
<div class="legend_element">
<div class="square" style="background: #1abc9c;"></div>
<span class="desc">Visited</span>
</div>
<div class="legend_element">
<div class="square" style="background: #f1c40f;"></div>
<span class="desc">Path</span>
</div>
</div>
</div>
<div id="grid">
</div>
<footer>
Autorzy: Piotr Białas i Filip Gaweł
</footer>
</body>
</html>