forked from johannesloor/WebAudio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
38 lines (35 loc) · 1.03 KB
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>
<link rel="stylesheet" type="text/css" href="index.css" />
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<title>[7] Sonic Gesture Challenge</title>
</head>
<body>
<div id="container">
<div id="instructions">
<div>
<h3>Sonic Gesture Challenge</h3>
<h4>Sound design 7</h4>
Try to mimic the stored sound by making gestures on the play area!
</div>
<div id="buttons">
<button id="playButton">
1. Play sound to mimic
</button>
<button id="compareButton" disabled>
3. Play my last sound and compare
</button>
</div>
</div>
<div id="touchArea">
2. Tap and slide to play
</div>
</div>
<script src="WebAudioXML.js" data-source="audio.xml"></script>
<script src="eventData.js"></script>
<script src="comparison.js"></script>
<script src="eventHandler.js"></script>
</body>
</html>