-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
47 lines (44 loc) · 1.43 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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp, noydir, none">
<title>Radio quarante-deux</title>
<link rel="stylesheet" href="style/style.css">
<link rel="icon" type="image/png" href="style/img/ico.png" />
<script src="js/jquery-2.1.0.min.js"></script>
<script src="js/radio.js"></script>
</head>
<body>
<h4>$> ./radio_42</h4>
<div id="track">
<h5>Now playing:</h5>
<div id="title"></div>
<div id="artist"></div>
</div>
<div id="program">
<h5>Coming next</h5>
<div id="program_name"></div>
<div id="date" data-timestamp="0"></div>
</div>
<audio preload volume="0.0" src="http://42.ham-radio-op.net:8080"></audio>
<div id="englobe">
<div id="player_button">
<div id="play_button"></div>
<div id="pause_button" class="hidden"></div>
<div id="round"></div>
</div>
</div>
<div id="wait" class="center"><p>Please wait...</p></div>
<div id="offline" class="center hidden"><p>Offline :/</p></div>
<div id="vlc" class="center large hidden">
<p>http://42.ham-radio-op.net:8080</p>
</div>
<div id="listeners"><span id="num"></span> <span id="str"></span></div>
<div id="footer">Listen in VLC</div>
<div style="position: absolute;">
<input id="volumeslider" type="range" min="0" max="100" value="100" step="1" onchange="setVolume();"/>
</div>
</body>
</html>