-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Thereminometer</title>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P|VT323" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="main">
<h2>THEREMINOMETER</h2>
<h2>tap on duck to start</h2>
<h2>WARNING: THIS IS NOT WHAT THE WEB AUDIO WAS MADE FOR! SOME FREQUENCIES HURT! IF THE SOUND DIES RELOAD THE PAGE!</h2>
<table>
<tr>
<td>(square detune) / [gamma]</td>
<td id="doTiltLR"></td>
</tr>
<tr>
<td>(sine detune) / [beta]</td>
<td id="doTiltFB"></td>
</tr>
<tr>
<td>(triangle detune) / [alpha]</td>
<td id="doDirection"></td>
</tr>
</table>
</div>
<div class="container" style="perspective: 300;">
<img src="./duck.png" id="imgLogo" class="logo">
</div>
<p>I'm sorry. <a href="https://github.com/adrianmancuso/thereminomometer">>Github Link</a></p>
<script src="./app.js"></script>
</body>
</html>