-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (30 loc) · 1.06 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
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>
Sortnetwork Check
</h1>
<div class="container">
<div class="container" name = "flex">
<p> Number Inputs: </p>
<input type="number" id="Inputs" name="Inputs" oninput="sizeChange()" size="200" value="3"><br><br>
<p> Depth: </p>
<input type="number" id="Depth" name="Depth" oninput="sizeChange()" size="200" value="4"><br><br>
<button onclick="sizeChange()">ENTER/RESET</button>
</div>
<div class="container" >
<p> Connections </p>
<p id="connectors"></p><br>
</div>
</div>
<p id="result"></p>
<div class="sorting_network" id="sorting_network">
<canvas id="sort_canvas"></canvas>
<div class="connectorsRender" id="connectorsRender">
</div>
</div>
<script src="Sort.js"></script>
</body>
</html>