-
Notifications
You must be signed in to change notification settings - Fork 0
/
radio.html
68 lines (68 loc) · 2.79 KB
/
radio.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>
<head>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/options.css">
<link rel="stylesheet" href="css/visualizer.css">
<link rel="stylesheet" href="css/google-material-icons.css">
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; img-src 'self'; script-src-elem 'self';"/>
</head>
<body>
<div class="background">
</div>
<div class="visualizer-container">
</div>
<div class="playerbox">
<div class= "playerbox-body">
<div class="playerbox-selection-wrapper">
<span class="arrow"></span>
<div class="dropdown-items">
<!-- <div class="item" id="1">
<h2>test option</h2>
</div>
<div class="item" id="2">
<h2>test option2</h2>
</div> -->
</div>
<!-- <div class="item" id="selected-mountpoint">
<h2>No mountpoints available</h2>
</div> -->
</div>
<div class="playerbox-widget">
<div class="nowplaying">
<div class="albumart">
<img src="img/loading.png"></img>
</div>
<div class="song-info">
<h3 class="song-title">Loading...</h3>
<h4 class="song-author"></h4>
</div>
</div>
<div class="controls">
<audio id="player" src=""></audio>
<div class="play-button">
<button id="idplaybutton" class="material-icons">play_circle</button>
</div>
<div class="wait-message">
<p></p>
</div>
<div class="volume-control">
<button id="idvolumebutton" class="material-icons">volume_up</button>
<input type="range" id="idvolumeslider" max="100" value="100">
</div>
</div>
</div>
</div>
</div>
<div class="options">
<div class="option-container">
<label for="bboost">Bassboost</label>
<input id="bboost" type="checkbox">
</div>
</div>
</body>
<script src="js/player.js"></script>
<script src="js/mountpoint-selection.js"></script>
<script src="js/visualizer.js"></script>
</html>