-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (37 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<title>Overly Satisfying Circular Audio Visualisation</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="shortcut icon" href="favicon.png" type="image/png">
<script src="core.js" type="text/javascript"></script>
</head>
<body>
<canvas id="board"></canvas>
<div id="settings">
<a id="settingsBtn" onclick="togglesettings()"></a>
<audio id="player" controls></audio>
<div id="inputs">
<div id="fileInBtn" class="option first">
Load Music
<input type="file" id="fileIn" class="option first">
</div>
<!--<a onclick="useMic()" id="micIn" class="option">Microphone</a>-->
<a onclick='playDemo("Aces High.mp3")' id="demoIn" class="option last">Play Demo</a>
</div>
<div id="more">
<div id="colors">
Change colors:
<input type="color" id="col2" value="#85BF25">
<input type="color" id="col3" value="#32BFC8">
</div>
<input type="checkbox" id="pulsating" checked>Enable pulsation
</div>
<div id="credits">
Made by <a href="https://twitter.com/jmb2624">Jannis Becker</a> in 2014, based on an idea by <a href="http://imgur.com/user/bmdl">bmdl</a> on imgur.<br>
Demo Song: <i>Aces High</i> by <a href="http://incompetech.com/">Kevin MacLeod</a>.<br>
<a href="https://github.com/galvaniccoffee/Circular-Audio">GitHub</a> | <a href="/impressum.php">Impressum</a>
</div>
</div>
</body>
</html>