-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (60 loc) · 1.36 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html>
<head>
<style>
.canvasContainer{
float:left;
}
.panelContainer{
margin-left: 1080px;
padding: 20px;
height: 559px;
width: 200px;
border-style: solid;
border-width: 1px;
}
.appContainer{
margin: auto;
padding-top: 170px;
width:fit-content;
}
button{
height: 30px;
width: 78px;
margin: 10px;
margin-top: 20px;
}
input{
float:right;
width: 70px;
font-size: 18px;
}
.inputContainer{
padding-top:15px;
padding-bottom: 15px;
}
</style>
</head>
<body>
<div class="appContainer">
<div class="canvasContainer" style="height:fit-content; width:fit-content">
<canvas id="canvas" height="610" width="1060">
</canvas>
</div>
<div class="panelContainer">
<div class="inputContainer">
Heuristic Weight:
<input id="heuristicWeight" type="number" name="heuristicWeight" min="0.00" step="0.01">
</div>
<div class="inputContainer">
Step Cost:
<input id="stepWeight" type="number" name="stepWeight" min="0.00" step="0.01">
</div>
<button onclick="start()">Start</button>
<button onclick="reset()">Reset</button>
<p id="panelMessage">Click 'Start' to begin search</p>
</div>
</div>
</body>
<script src="./script.js"></script>
</html>