-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.html
50 lines (43 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Patch Library</title>
<link rel="stylesheet" href="//cdn.rawgit.com/necolas/normalize.css/master/normalize.css">
<link rel="stylesheet" href="/app.css"/>
</head>
<body>
<main role="main" class="container">
<h1>Moog Subharmonicon</h1>
<form accept-charset="UTF-8" action="/patches" enctype="multipart/form-data" method="post">
<input id="patch_data" name="patch[data]" type="hidden" value="{}">
<section class="row row-front-panel">
<canvas id="front-panel" data-device="moog-subharmonicon" width="1800" height="770"></canvas>
</section>
<p>
Use your mouse to drag cables between outputs and inputs, turn the knobs, press the switches.
Enter a title and your name, perhaps some notes and an audio preview, then save your patch.
Create the same cable twice to remove it.
</p>
<section class="patch-details">
<fieldset>
<div class="row">
<div class="column column-50">
<label>Patch Cables</label>
<p id="patch-cable-output"></p>
</div>
</div>
</fieldset>
</section>
</form>
<footer>
<br/>
<br/>
<p>copyright <em>zwippie <small>at</small> gmail <small>dot</small> com</em></p>
</footer>
</main>
<script type="text/javascript" src="/app.js"></script>
</body>
</html>