-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_interface.html
53 lines (52 loc) · 1.84 KB
/
main_interface.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
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<title>Collective interface</title>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="container">
<div class="divider">
<p>SOUNDBANK</p>
</div>
<div class="row">
<p class="link">
(i) Intro chords (ii) Goodbye (iii) I feel fine (iv) Sound instructions TBD
</p>
</div>
<div class="buttons">
<div class="row blacks">
<a id="chords" onclick="playSound('intro')"><p>i</p></a>
<a id="goodbye" onclick="playSound('goodbye')"><p>ii</p></a>
</div>
<div class="row blacks">
<a id="i-feel-fine" onclick="playSound('speech')"><p>iii</p></a>
<a id="inst"><p>iv</p></a>
</div>
</div>
<div class="divider">
<p>I WANT TO TELL YOU MY STORY</p>
</div>
<div class="buttons">
<div class="row blacks">
<a onclick="playByText('nl-NL','I want to tell you my story', 1)"><p>T</p></a>
<a onclick="playByText('en-IN','I want to tell you my story', 1)"><p>E</p></a>
</div>
<div class="row blacks">
<a onclick="playByText('th-TH','I want to tell you my story', 1)"><p>L</p></a>
<a onclick="playByText('it-IT','I want to tell you my story', 1)"><p>L</p></a>
</div>
</div>
<div class="divider">
<p>BEATBOX</p>
</div>
<div id="buttons" class="buttons">
</div>
</div>
<script src="main.js"></script>
<script src="synthesis.js"></script>
<script src="beat.js"></script>
</body>
</html>