-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpathFinding.html
40 lines (35 loc) · 877 Bytes
/
pathFinding.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
<!DOCTYPE html>
<html>
<head>
<style>
table
{
/*-webkit-user-select: none; /* Safari 3.1+ */
/*-moz-user-select: none; /* Firefox 2+ */
/*-ms-user-select: none; /* IE 10+ */
/*user-select: none; /* Standard syntax */
border: 1px solid black;
}
.dropdown {
position: relative;
display: inline-block;
}
</style>
</head>
<body>
<h2>path finding algorithms</h2>
<div id="intro">feel the heat of visualisation</div>
<table id = "myTable">
</table>
<button id = "start_up" onclick = "myFunction(); this.onclick=null;">fuck it</button>
<div class="dropdown">
<select onchange="test(this)">
<option disabled selected value="0">--Select Algo--</option>
<option value = "1">DFS</option>
<option value = "2">BFS</option>
<option value = "3">DK</option>
</select>
</div>
<script type="text/javascript" src="pathFinding.js"></script>
</body>
</html>