forked from abudaan/JazzMIDIBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample7-pitchbend.html
More file actions
29 lines (27 loc) · 1.23 KB
/
Copy pathexample7-pitchbend.html
File metadata and controls
29 lines (27 loc) · 1.23 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
<!doctype html>
<html>
<head>
<title>Jazz MIDI Bridge</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="lib/jazzmidibridge-0.1.1.min.js"></script>
<script type="text/javascript" src="lib/midideviceselector.plugin.min.js"></script>
<script type="text/javascript" src="js/example7-pitchbend.js"></script>
<link rel="stylesheet" media="screen" href="css/reset.css"/>
<link rel="stylesheet" media="screen" href="css/JazzMIDIBridge.css"/>
</head>
<body>
<div id="content">
<!-- dropdown menus for selecting MIDI in and output -->
<select id="inputs"></select>
<select id="outputs"></select>
<!-- pitchbend slider -->
<div id="pitchbend-container">
<div id="pitchbend-label">pitch bend</div>
<label><input type="range" name="pitchbend" id="pitchbend" min="0" max="127" />
<div id="pitchbend-value"></div>
</div>
<!-- MIDI messages get displayed here -->
<div id="messages">Please select a MIDI output<br/></div>
</div>
</body>
</html>