-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.13 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
<html>
<link href="styles.css" rel="stylesheet">
<head>
<title>SynthieJS</title>
</head>
<body>
<h1>Synthie</h1>
<p>This is a demo of SynthieJS, a simple audio synthesizer written in a functional style.</p>
<div class="instructions">Hit Play to play a repeating song pattern. You may want to lower your volume initially.</div>
<div class="playdiv">
<a id="StartButton" href="javascript:DidPressStart();">Play</a>
</div>
<div>
<p>The audio is synthesized, i.e. the samples are generated and not previously recorded.</p>
<p>SynthieJS can play various waveforms (sine, triangle, sawtooth, square, noise) and can be useful for your next retro 8-bit style web game.</p>
</div>
<div class="footer">
<h2>Project Info</h2>
<p>made by allen ussher <a href="https://twitter.com/ussherpress">@ussherpress</a></p>
<p>see <a href="https://github.com/allenu/SynthieJS">github.com/allenu/SynthieJS</a>.</p>
</div>
</body>
<script src="./Synthie.js"></script>
<script src="./Songreader.js"></script>
<script src="./Songplayer.js"></script>
<script src="./Controller.js"></script>
</html>