-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (42 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>eradio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<script type="module" src="js/index.js"></script>
</head>
<body>
<div class="eradio_player">
<button id="eradio_play_button">Play</button>
<button id="eradio_veto_button">Veto</button>
<br/>
<audio id="eradio_stream" preload="none">
<source src="data:" type="audio/mpeg">
</audio>
<label for="eradio_volume_slider">Volume</label>
<input id="eradio_volume_slider" type="range" min="0" max="100" value="100">
<br/>
<div id="eradio_status">
<span class="eradio_status_stopped">Not Playing</span>
<span class="eradio_status_loading" style="display: none;">
Loading
<span class="eradio_status_loading_cycle">.</span>
<span class="eradio_status_loading_cycle">..</span>
<span class="eradio_status_loading_cycle">...</span>
</span>
<span class="eradio_status_playing" style="display: none;">
Playing <span class="eradio_status_playing_lag" style="display: none;">
(<span class="eradio_status_playing_lag_value"></span> seconds behind)
</span>
</span>
</div>
<div id="eradio_metadata">
<a href="#" class="eradio_metadata_song" style="display: none;"></a>
<span class="eradio_metadata_no_song" style="display: none;">No Song Playing</span>
</div>
<span><span id="eradio_listener_count">0</span> Listeners</span>,
<span><span id="eradio_veto_count">0</span> Vetoes</span>
</div>
</body>
</html>