-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (86 loc) · 3.37 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>BoomBlock</title>
<script type="text/javascript" src="bundle.js"></script>
<!-- <script type="text/javascript">
(function(){var script=document.createElement('script');script.onload=function(){var stats=new Stats();document.body.appendChild(stats.dom);requestAnimationFrame(function loop(){stats.update();requestAnimationFrame(loop)});};script.src='//rawgit.com/mrdoob/stats.js/master/build/stats.min.js';document.head.appendChild(script);})()
</script> -->
<link href="https://fonts.googleapis.com/css?family=Ranchers" rel="stylesheet">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="main_styles.css">
</head>
<body>
<div id="world" class="world-move background-blue"></div>
<nav>
<ul class="nav-left">
<li class="icon-portfolio">
<a href="http://milesmcleod.com">
<img src="frontend/assets/mm_logo_v2.png" alt="">
</a>
<span class="hover-portfolio">Portfolio</span>
</li>
<li class="icon-linkedin">
<a href="https://www.linkedin.com/in/miles-mcleod/">
<img src="frontend/assets/linkedin_box.png" alt="">
</a>
<span class="hover-linkedin">LinkedIn</span>
</li>
<li class="icon-github">
<a href="https://github.com/milesmcleod/boomblock">
<img src="frontend/assets/github_icon.png" alt="">
</a>
<span class="hover-github">Boomblock Github</span>
</li>
</ul>
<ul class="nav-right">
<li class="about-link">What is going on here?</li>
</ul>
</nav>
<article class="about-modal">
<p>
BoomBlock is an interactive, multitrack reel-to-reel player that uses JavaScript to detect the tempo of incoming audio, and then renders the 3D environment accordingly.
</p>
<p>
This program is written exclusively in JavaScript, using the ThreeJS library and the Web Audio API. It is a work in progress; check back in for major updates in the near future!
</p>
<p>
All songs are original compositions by Miles McLeod.
</p>
</article>
<section id="night-switch">
<p>nightmode</p>
</section>
<section id="playlist">
<p id="playlist-link">^ playlist</p>
<div class="playlist-menu hide">
<ul class="playlist-list">
<li>1. Coming soon!!</li>
<li>2. Coming soon!!</li>
<li>3. Coming soon!!</li>
<li>4. Coming soon!!</li>
</ul>
<div class="menu-background">
</div>
</div>
</section>
<section id="controls">
<p id="controls-link">< controls</p>
<div class="controls-menu hide">
<ul class="controls-list">
<li class="play" style='color: #66ff66;'>play</li>
<li class="pause" style='color: #ff0000;'>pause</li>
<li class="reset" style='color: #ffff00'>reset</li>
<li class="mute" style='color: #00ffff'>mute</li>
<li class="mt1" style='color: #00ffff'>mute track 1</li>
<li class="mt2" style='color: #00ffff'>mute track 2</li>
<li class="mt3" style='color: #00ffff'>mute track 3</li>
<li class="mt4" style='color: #00ffff'>mute track 4</li>
</ul>
<div class="menu-background">
</div>
</div>
</section>
</body>
</html>