forked from AlexanderParker/phasemod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphasemod.html
More file actions
28 lines (28 loc) · 890 Bytes
/
phasemod.html
File metadata and controls
28 lines (28 loc) · 890 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<title>Phase Modulated Synth</title>
<script src="js/includes/jquery.js"></script>
<script src="js/includes/knobRot-0.2.2.js"></script>
<script src="js/soundlib/common.js"></script>
<link type="text/css" href="css/phasemod.css" rel="Stylesheet" />
</head>
<body>
<div class="oscillator">
<span>Frequency</span>
<input type="text" id="frequency1" value="0" />
<span>Amplitude</span>
<input type="text" id="amplitude1" value="1" />
<span>Phasemod Amount</span>
<input type="text" id="modsend1" value="0" />
</div>
<div class="oscillator">
<span>Frequency</span>
<input type="text" id="frequency2" value="0" />
<span>Amplitude</span>
<input type="text" id="amplitude2" value="1" />
<span>Phasemod Amount</span>
<input type="text" id="modsend2" value="0" />
</div>
</body>
</html>