-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.3 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<title>MinDrm Seq</title>
<link rel="stylesheet" href="style.css" />
<meta http-equiv="cache-control" content="no-cache" />
<!-- tells browser not to cache -->
<meta http-equiv="expires" content="0" />
<!-- says that the cache expires 'now' -->
<meta http-equiv="pragma" content="no-cache" />
<!-- says not to use cached stuff, if there is any -->
</head>
<body>
<center>
<p>
BPM: <input type="number" value="120" id="input_bpm" />
<button onclick="window.program.Iupdate_bpm()">Set</button>
Drum Kit:
<select
id="drum_kit_select"
onchange="window.program.Iset_drum_kit(parseInt(event.target.value))"
>
<option value="0">505</option>
<option value="1">606</option>
<option value="2">707</option>
<option value="3">808</option>
<option value="4">CR-78</option>
<option value="5">LinnDrum</option>
</select>
</p>
<div class="noodle"></div>
<table class="sequencer"></table>
<p>Save Url: <input type="url" id="save_url" /></p>
</center>
<script src="https://cdn.jsdelivr.net/npm/handlebars@latest/dist/handlebars.js"></script>
<script src="js/init.js" type="module"></script>
</body>
</html>