-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (71 loc) · 3.92 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" lang="en"/>
<meta name="author" content="Chris"/>
<meta name="description" content=""/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Webdeck Player</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link id="player-theme" rel="stylesheet" href="./themes/default/webdeck-player.css">
</head>
<body>
<div id="content">
<div id="web-deck-player">
<div id="player-title-bar">
WEBDECK PLAYER
</div>
<div id="player-body">
<div id="player-main-section">
<div class="columns">
<div id="player-display">
<div id="youtube-player"></div>
</div>
<div id="player-info">
<div id="info-screen">
<p id="songLabel"><b>Loading...</b></p>
<div id="statusLabel"><br></div>
</div>
<div class="player-row">
<div id="player-volume">
<button id="volumeButton" title="Mute / Unmute"></button>
<input type="range" id="volumeBar" title="Volume" min="0" max="100" value="50">
</div>
<select id="themeSelector" title="Select Theme">
<!-- themes are injected with javascript -->
</select>
</div>
<div class="player-row">
<button id="videoButton" class="toggle-button" state="on" title="Toggle Video"><p>Video</p></button>
<div id="playerLogo"></div>
</div>
</div>
</div>
</div>
<div id="player-control-panel">
<input type="range" id="seekBar" title="Seek" value="0">
<br>
<div class="playing-controls">
<button id="prevButton" title="Previous Track"></button>
<button id="playButton" title="Play / Pause"></button>
<button id="stopButton" title="Stop"></button>
<button id="nextButton" title="Next Track"></button>
</div>
<div class="playing-controls">
<button id="shuffleButton" class="toggle-button" state="off" title="Toggle Shuffle"><p>Shuffle</p></button>
</div>
<div class="playing-controls" float-right>
<select id="playlistSelector" title="Select Playlist">
<!-- playlists are injected with javascript -->
</select>
</div>
<div class="playing-controls" rounded float-right>
<button id="infoButton" title="Info"></button>
</div>
</div>
</div>
</div>
<script src="./script.js"></script>
</div>
</body>
</html>