-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>HTML5 trombone!</title>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="style-gen.css" />
<script type="text/javascript" src="play.js"></script>
</head>
<body>
<div id="regularPlay">Resize to play!</div>
<div id="smallPlay">Click letters to play!</div>
<div>
<div id="mobileInstruction">see me on mobile |</div>
<div id="smallScreenInstruction">small screen |</div>
<div id="arrowsInstruction"><<<</div>
</div>
<div id="notes">
<span id="C" tabindex="0">C</span><span id="D" tabindex="1">D</span><span id="E" tabindex="2">E</span><span id="F" tabindex="3">F</span><span id="G" tabindex="4">G</span><span id="A" tabindex="5">A</span><span id="B" tabindex="6">B</span><span id="C2" tabindex="7">C</span>
<div id="tromboneBox">
<div id="trombone">
<span id="bell"></span>
<span id="slide"></span>
</div>
<div id="notesParticles">
<div id="note0">♯</div>
<div id="note1">♩</div>
<div id="note2">♪</div>
<div id="note3">♫</div>
<div id="note4">♬</div>
<div id="note5">♭</div>
<div id="note6">♮</div>
</div>
</div>
</div>
</body>
</html>