-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (50 loc) · 1.53 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
<title> ◬🥁👁 </title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tone/13.8.2/Tone.min.js" charset="utf-8"></script>
<script src="generate-pattern.js" charset="utf-8"></script>
<script defer src="script.js" charset="utf-8"></script>
</head>
<body>
<div class="triangle"></div>
<main>
<header>
<h1> ◬ </h1>
<h3 class="eyes">👁 👁</h3>
<h3> Euclidean Rhythms </h3>
</header>
<div class="rhythm-display"></div>
<section class="controls">
<label for="pulses">
Pulses
<input id="pulses" autofocus name='pulses' type="number" placeholder="Pulses" value="4">
</label>
<label for="steps">
Steps
<input id="steps" name='steps' type="number" placeholder="Steps" value="16">
</label>
<section class="transport">
<button id="playButton">▶️</button>
<button id="stopButton">⏹</button>
</section>
<label for="bpm">
<span>120</span> bpm
<input name="bpm" type="range" min="60" max="240" value="120">
</label>
<label for="volume">
<span>🔊</span>
<input name="volume" type="range" min="-60" max="12" value="0">
</label>
</section>
<section class="controls">
<label for="pixels">
Size
<input id="pixels" name='pixels' type="number" placeholder="pixels" value="48">px
</label>
</section>
</main>
</body>
</html>