-
Notifications
You must be signed in to change notification settings - Fork 38
/
index.html
74 lines (60 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<title>webmidi test page</title>
<link rel="stylesheet" href="style/main.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>OMX-27 MIDI test</h1>
<div id="nomidi">This test page requires a WebMIDI compatible browser. We recommend Google Chrome.</div>
<script src="js/cells.js"></script>
<div id="universe">
</div>
<div style="margin-top: 25px;margin-bottom: 25px;">
Connect your device via USB _or_ hardware MIDI, not both
</div>
<div style="margin-top: 25px;margin-bottom: 25px;">
MIDI Input:
<select id=midiIn onchange='changeMidiIn();'>
<option value="">Not connected</option>
</select>
MIDI Output:
<select id=midiOut onchange='changeMidiOut();'>
<option value="">Not connected</option>
</select>
</div>
<div id="midi">
<div id="pots">
<div id="sliderblock" style="float:right">
<div id="backdrop">
<div class='slider'></div>
<div class='slider'></div>
<div class='slider'></div>
<div class='slider'></div>
<div class='slider'></div>
</div>
<div id="labels">
<div>1</div>
<div>1</div>
<div>1</div>
<div>1</div>
<div>1</div>
</div>
</div>
<div id="feedback" style="float:left">
<div><br /><br /><br /><p>potentiometers</p></div>
cc: <div id="ccnum" class="cell">0</div>
val: <div id="ccval" class="cell">0</div>
</div>
<div style="clear:both"><br /></div>
</div>
<div style="clear:both"><br /><br /><p>notes</p></div>
<div id="feedback">
note: <div id="notenum" class="cell">0</div>
vel: <div id="noteval" class="cell">0</div>
</div>
<div style="clear:both"></div>
</div>
</body>
</html>