-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
43 lines (43 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<meta name='viewport' content='width=320,initial-scale=1,user-scalable=0'>
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="oscillator.js"></script>
<link href='//fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
<style>
html {
font-size: 100%;
}
body {
background: #464a5e;
font-family: VT323;
color: #d4d5da;
}
textarea {
font-family: VT323;
font-size: 20px;
background: #76a47d;
color: #20291d;
border: 4px solid #d4d5da;
}
button {
background: #d4d5da;
border: 0;
padding: 10px;
font-family: VT323;
font-size: 20px;
}
</style>
</head>
<body>
<l>[#]<n><o><br/>
l: length (1 = 1/1, 2 = 1/2, 4 = 1/4, 8 = 1/8 and 16 = 1/16)<br/>
#: accidental (optional)<br/>
n: note (c, d, e, f, g, a, b)<br/>
o: octave (1 to 4)<br/>
<br/>
<textarea style="width: 200px; height: 200px">8#g2 8e2 8#g2 8#c3 4a2 4- 8#f2 8#d2 8#f2 8b2 4#g2 8#f2 8e2 4- 8e2 8#c2 4#f2 4#c2 4- 8#f2 8e2 4#g2 4#f2</textarea><br/>
<button id="play">Play</button>
</body>
</html>