-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (68 loc) · 2.49 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Eli Music</title>
<link rel="stylesheet" type="text/css" href=".player/index.css" media="all">
<script src=".player/experiments/showcqt.js"></script>
</head>
<body>
<div id="search-panel" class="control">
<span id="result-number"></span>
/ <input id="search" type="text" value="" size="20" placeholder="search"
spellcheck="false"> /
</div>
<div id="control-panel" class="control">
<div class="flex-line">
<div id="times"><div id="time">?:??</div><div id="dur">?:??</div></div>
<div>
<div id="playerbuttons" class="media-buttons">
<div id="p-prev" >0</div>
<div id="p-rew" >1</div>
<div id="p-stop" >2</div>
<div id="p-pause">3</div>
<div id="p-play" >4</div>
<div id="p-fwd" >5</div>
<div id="p-next" >6</div>
</div>
<audio id="player" preload="auto"></audio>
<div id="wave"><img id="wave-image"><div id="wave-needle"></div></div>
</div>
<div id="sliders">
<input type="range" id="gain" title="Amp" class="slider" max="4" step="0.25">
<input type="range" id="volume" title="Volume" class="slider" max="10">
<input type="range" id="rate" title="Speed" class="slider" max="8" >
</div>
<div id="viz-container">
<canvas id="visualization"></canvas>
<div id="viz-controls">
<div id="bigviz" class="toggle" title="Yuge" ></div>
<div id="vizsubmode" class="nexter" title="VizSubMode"></div>
<div id="vizmode" class="nexter" title="VizMode" ></div>
</div>
</div>
</div>
<div class="flex-line">
<div id="help" class="toggle" title="Help">❔</div>
<div id="device" class="toggle" title="Select Device">🔊</div>
<div id="flashy" class="toggle" title="Flashy">❊</div>
<div id="loop" class="media-buttons toggle on" title="Loopy">7</div>
<div id="track-info"><div></div></div>
</div>
</div>
<div id="message"></div>
<img class="under">
<img class="under">
<div>
<div id="main" class="itemlist"></div>
<div id="plist" class="itemlist"></div>
</div>
<div id="beatmode" class="toggle" title="Beat Mode">
<div id="beat">⫰</div>
</div>
<div id="select-device" class="overlay"></div>
<div id="help-text" class="overlay"></div>
<div id="overlay-bg"></div>
<script src=".player/index.js"></script>
</body>
</html>