-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayer.html
More file actions
36 lines (35 loc) · 1.14 KB
/
player.html
File metadata and controls
36 lines (35 loc) · 1.14 KB
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
<div id='player'>
<div class='main'>
<div class='controls-wrapper cf'>
<span id='play-pause' class='play-pause ctrl'></span>
<span id='gutter' class='gutter'>
<span id='fill' class='fill'>
<span id='handler' class='handler'> </span>
</span>
</span>
<div id='volume' class='volume' data-visible='hidden'>
<div id='v-gutter-wrap' class='v-gutter-wrap'>
<div id='v-gutter' class='v-gutter'>
<div id='v-fill' class='v-fill'>
<div id='v-handler' class='v-handler'> </div>
</div>
</div>
</div>
</div>
<!--
TODO: Move this to the playlist or some other place.
<span id='time-remaining' class='time-remaining'>00:00:00</span>
-->
</div>
<div class='playing'>
<div id='wrap-audio'>
<audio id='audio'><!-- Filled with JS. --></audio>
</div>
<div id='current'><!-- Filled with JS. --></div>
</div>
</div>
<div id='open-close-playlist' class='closed'></div>
<div id='playlist' class='playlist'>
<!-- Filled uppen player.init() invocation. -->
</div>
</div>