-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (64 loc) · 2.54 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
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel='icon' href='favicon.ico' type='image/x-icon'/>
<script src="./d3/d3.min.js"></script>
<title>Boop Blocks</title>
<script src="https://kit.fontawesome.com/51da45b07a.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./stylesheets/index.css" />
</head>
<body>
<div id="social-icons">
<div class="modes">
<li id="light"></li>
<li id="color"></li>
<li id="dark"></li>
</div>
<a href="https://www.linkedin.com/in/xchenj/" class="fab fa-linkedin" target="_blank"
rel="noopener noreferrer"></a>
<a href="https://angel.co/xchenj" class="fab fa-angellist" target="_blank" rel="noopener noreferrer"></a>
<a href="https://github.com/junnac" class="fab fa-github" target="_blank" rel="noopener noreferrer"></a>
<a href="mailto:x.chenj@gmail.com" class="fa fa-envelope" target="_blank" rel="noopener noreferrer"></a>
</div>
<div id="boopblocks">
<div class="keys">
<h1>Boop Blocks</h1>
<h4>by Joanna Chen</h4>
<div id="play-pause">
<svg height="20" width="20">
<polygon id="master-play" points="20,10 5,20 5,0" style="fill:black;" />
</svg>
<i id="mute" class="fas fa-pause"></i>
</div>
</div>
<div id="synth-container">
<div class="synth" id="synth1" data-frequency="329.63"></div>
<div class="synth" id="synth2" data-frequency="523.25"></div>
<div class="synth" id="synth3" data-frequency="349.23"></div>
<div class="synth" id="synth4" data-frequency="261.63"></div>
<div class="synth" id="synth5" data-frequency="392.00"></div>
<div class="synth" id="synth6" data-frequency="349.23"></div>
<div class="synth" id="synth7" data-frequency="329.63"></div>
<div class="synth" id="synth8" data-frequency="261.63"></div>
<div class="synth" id="synth9" data-frequency="523.25"></div>
</div>
</div>
<div class="description">
<ol>
<li>Click anywhere to begin</li>
<li>Observe and internalize each block's pulse</li>
<li>Click pause</li>
<li>Hover over or click a block to make it boop</li>
<li>One-by-one, click play on each block to build your own polyrhythmic boop!</li>
</ol>
</div>
<script src="./lib/synth.js"></script>
<script src="./lib/soundwave.js"></script>
<script src="./lib/ui_mode.js"></script>
</body>
<footer>
</footer>
</html>