-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex-dev.html
More file actions
81 lines (72 loc) · 2.81 KB
/
index-dev.html
File metadata and controls
81 lines (72 loc) · 2.81 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en" dir="ltr">
<meta charset="utf-8">
<title>UTM Jazz</title>
<head>
<link rel ="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1 class="header">Universal Turing Music Player</h1>
<p class="header">
One of human cognition’s most distinct products is art. What does
creating art look like? Does it require cognition? An agent?<br>
We present Turing music, inspired by Turing Drawings.
</p>
<div class="content">
<div class="menu">
<p>Choose your instruments:</p>
<select id="instrument-0">
<option value="chiptune" selected>Chiptune</option>
<option value="brass">Brass</option>
<option value="bass">Bass</option>
<option value="organ">Organ</option>
</select>
<select id="instrument-1">
<option value="chiptune">Chiptune</option>
<option value="brass" selected>Brass</option>
<option value="bass">Bass</option>
<option value="organ">Organ</option>
</select>
<select id="instrument-2">
<option value="chiptune">Chiptune</option>
<option value="brass">Brass</option>
<option value="bass" selected>Bass</option>
<option value="organ">Organ</option>
</select>
<select id="instrument-3">
<option value="chiptune">Chiptune</option>
<option value="brass">Brass</option>
<option value="bass">Bass</option>
<option value="organ" selected>Organ</option>
</select>
<div class="stateChooser">
<label>Choose the number of states:</label>
<input type="number" min=1 max=17 id="stateval" value=5>
</div>
<button id="begin-button" class="button">Go</button>
<button id="random-button" class="button">Randomize</button>
<button id="stop-button" class="button">Stop</button>
<button id="replay-button" class="button">Replay</button>
<button id="reset-button" class="button">Reset</button>
</div>
<div class="viz">
<div id="music-sheets">
<div id="sheet-divider"></div>
<div id="music-bar"></div>
</div>
<div id="insts-used">
<p id= "inst-0"></p>
<p id= "inst-1"></p>
<p id= "inst-2"></p>
<p id= "inst-3"></p>
</div>
</div>
</div>
<p class="githubLink">
<a href="https://github.com/perfect5th/utm-jazz/" target="_blank">
Github
</a>
</p>
<script src="./index.js"></script>
</body>
</html>