forked from ubclaunchpad/simon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (43 loc) · 1.49 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>
<title>Simon</title>
<link rel="stylesheet" href="/css/simon.css" />
</head>
<body>
<!-- Links to audio files for C-F notes -->
<audio id="c-audio">
<source src="/media/c_note.mp3" type="audio/mpeg"></source>
<source src="/media/c_note.ogg" type="audio/ogg"></source>
<source src="/media/c_note.wav" type="audio/wav"></source>
</audio>
<audio id="d-audio">
<source src="/media/d_note.mp3" type="audio/mpeg"></source>
<source src="/media/d_note.ogg" type="audio/ogg"></source>
<source src="/media/d_note.wav" type="audio/wav"></source>
</audio>
<audio id="e-audio">
<source src="/media/e_note.mp3" type="audio/mpeg"></source>
<source src="/media/e_note.ogg" type="audio/ogg"></source>
<source src="/media/e_note.wav" type="audio/wav"></source>
</audio>
<audio id="f-audio">
<source src="/media/f_note.mp3" type="audio/mpeg"></source>
<source src="/media/f_note.ogg" type="audio/ogg"></source>
<source src="/media/f_note.wav" type="audio/wav"></source>
</audio>
<!-- Note boxes -->
<div id="simon">
<div id="c" class="note-box"></div>
<div id="d" class="note-box"></div>
<div id="e" class="note-box"></div>
<div id="f" class="note-box"></div>
</div>
<div id="mode-select">
<label for="mode"><b>Select mode:</b></label>
<input type="range" id="mode" min="0" value="0" max="1" step="1" oninput="changeMode(this.value)">
<input type="text" id="mode-view" value="Echo" disabled></input>
</div>
<script src="/js/simon.js"></script>
</body>
</html>