-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (60 loc) · 1.93 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
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Sorter</title>
<style>
.grid-container {
display: grid;
grid-template-columns: auto auto auto auto;
padding: 10px;
}
.grid-item {
padding: 20px;
font-size: 20px;
font-family: sans-serif;
text-align: center;
}
h1{
text-align: center;
}
</style>
</head>
<body>
<h1> Image Sorter Effect</h1>
<iframe src="Visuals.html" frameborder="0" onload="fixIframe()" id="myiframe"></iframe>
<br>
<div class="grid-container">
<div class="grid-item">
Upload Image <br>
<input type="file" accept="image/*" onchange="loadFile(event)">
</div>
<div class="grid-item">
Change Sort Method <br>
<select id="mylist" onchange="loadSort()">
<option> Quick Sort </option>
<option> Bubble Sort </option>
</select>
</div>
<div class="grid-item">
Change Sort Speed <br>
<input type="text" id="myText" value="10" onchange="loadSpeed()">
</div>
<div class="grid-item">
Record and Download Sort <br>
<button onclick="loadRecord()">Record and Download</button>
</div>
<div class="grid-item">
Mute/Unmute audio <br>
<button id = "test" onclick="createAudio()">Unmute</button>
</div>
</div>
<br><br>
By: William Sokol
<br>
Nov 29, 2021
<script src="Basics.js"></script>
<script src="SorterManager.js"></script>
</body>
</html>