-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.74 KB
/
index.html
File metadata and controls
52 lines (48 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="assets/maze.png" />
<link rel="stylesheet" href="css/styles.css" />
<script src="dist/bundle.js" defer></script>
<title>Path Finding</title>
</head>
<body>
<div class="centerize">
<h1>Pathfinding Visualizer</h1>
</div>
<div class="centerize">
<p>Note: There are some resetting bugs -- Just reload the page instead! 🤌</p>
</div>
<header class="centerize">
<div class="centerize gap options">
<select id="algorithms">
<option value="dijkstra">Dijkstra's Algorithm</option>
<option value="astar">A* Algorithm</option>
<option value="bfs">Breadth-First Search</option>
<option value="dfs">Depth-First Search</option>
</select>
<select id="terrains">
<option value="plain">Plain</option>
<option value="random">Random</option>
<option value="random-weighted">Random Weighted</option>
<!-- <option value="maze-bfs">Maze BFS</option>
<option value="maze-dfs">Maze DFS</option> -->
</select>
<select id="node-types">
<option value="start">Start Node</option>
<option value="end">End Node</option>
<option value="wall">Wall Node</option>
<option value="weight">Weight Node</option>
</select>
<button id="reset">Reset</button>
<button id="navigate">Navigate</button>
</div>
</header>
<main class="centerize">
<div class="board"></div>
</main>
</body>
</html>