-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (44 loc) · 1.61 KB
/
index.html
File metadata and controls
49 lines (44 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./waves.css?sss">
<title>Waves</title>
</head>
<body>
<div class="menu">
<h4>General</h4>
<label for="showNumbers">Show numbers</label>
<input id="showNumbers" type="checkbox"><br>
<label for="justEdges">Just edges</label>
<input id="justEdges" type="checkbox"><br>
<label for="tableSize">Table size</label>
<input id="tableSize" type="range" min="10" max="40" value=10 step="10" onchange="inicializeTable()"/><br>
<label for="propagationDelay">Delay</label>
<input id="propagationDelay" type="range" min="20" max="1000" value="30"><br>
<h4>Propagation</h4>
<label for="propagateUp"> Up</label>
<input id="propagateUp" type="checkbox" checked><br>
<label for="propagateDown"> Down</label>
<input id="propagateDown" type="checkbox" checked><br>
<label for="propagateLeft"> Left</label>
<input id="propagateLeft" type="checkbox" checked><br>
<label for="propagateRigth"> Rigth</label>
<input id="propagateRigth" type="checkbox" checked><br>
</div>
<table></table>
<div class="footer">
<p>
Made with
<span>
love
</span>
by
<a target="_blank" href="https://www.github.com/higorc">HigorC</a>
</p>
</div>
<script src="./index.js"></script>
</body>
</html>