-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·128 lines (120 loc) · 3.91 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="sheet.css" />
<link rel="icon" type="image/png" href="./images/bleep-favicon.png" />
<title>BleepSynth</title>
</head>
<body>
<p>
<button class="orangebutton" id="start-button">Start</button>
<button class="greybutton" id="load-button">Load</button>
<button class="greybutton" id="save-button">Save</button>
<button class="greybutton" id="save-as-button">Save As</button>
<button class="greybutton" id="clip-button">Copy Params</button>
<button class="greybutton" id="docs-button">Copy Docs</button>
<button class="midibutton" id="midi-learn-button">MIDI Learn</button>
<span id="midi-label"> Midi input: </span
><select class="dropdown" id="midi-input"></select>
<span id="fx-label"> Effect: </span
><select class="dropdown" id="fx-select"></select>
<span id="preset-label"> Preset: </span
><select class="dropdown" id="preset-select"></select>
<span id="dot" style="color: #e6983f; opacity: 0"> ◉</span>
</p>
<div id="file-label">Current file: none</div>
<div class="monitor" id="monitor">idle</div>
<table border="0px" padding="0px">
<tr>
<td>
<canvas
id="scope-canvas"
class="bleep-canvas"
width="520"
height="40"
>
Your browser does not support the HTML5 canvas tag.
</canvas>
</td>
<td>
<div id="rms-label" class="monitor">
RMS=0.0000, Peak RMS=0.0000
</div>
</td>
</tr>
</table>
<div class="body-container">
<div class="column fixed-width">
<textarea class="textarea" rows="29" id="synth-spec"></textarea><br />
<textarea
readonly
class="textarea"
rows="4"
id="parse-errors"
></textarea>
</div>
<div class="column content-width">
<table>
<tr>
<td valign="top">
<div class="slider-container">
<input
class="slider"
type="range"
id="slider-pitch"
min="24"
max="108"
value="60"
step="1"
/>
<label id="label-pitch" for="slider-pitch">pitch [C4]</label>
</div>
<div class="slider-container">
<input
class="slider"
type="range"
id="slider-level"
min="0"
max="1"
value="1"
step="0.01"
/>
<label id="label-level" for="slider-level">level [1]</label>
</div>
<div class="slider-container">
<input
class="slider"
type="range"
id="slider-wetLevel"
min="0"
max="1"
value="0.5"
step="0.01"
/>
<label id="label-wetLevel" for="slider-wetLevel"
>wetLevel [1]</label
>
</div>
<button class="playbutton" id="play-button">Play</button>
<table>
<tr>
<td valign="top">
<div id="container1"></div>
</td>
<td valign="top">
<div id="container2"></div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div class="column remaining-width">
<div id="mermaid-graph" class="mermaid-container"></div>
</div>
</div>
<script src="app.js" type="module"></script>
</body>
</html>