-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
50 lines (45 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Roon Display</title>
<link rel="stylesheet" href="style/main.css">
</head>
<body>
<!-- MAIN SCREEN -->
<div id="main-content-box">
<img id="album-art-bg" />
<div id="noise-overlay"></div>
<div id="album-cover">
<div id="album-cover-body">
<div id="cover-front"></div>
<div id="cover-back"></div>
</div>
</div>
<div id="track-info">
<h4 id="song-name"></h4>
<h5 id="artist-album"></h5>
<div id="seek-bar">
<p id="seek"></p>
<div id="bar-wrapper">
<div id="bar-actual"></div>
</div>
<p id="total"></p>
</div>
</div>
<h5 id="clock-small"></h5>
</div>
<!-- CONNECTING SCREEN -->
<div id="connecting-content-box">
<img id="roon-logo" src="img/roon_logo.svg" />
<h1 data-after="...">Connecting to Roon Core</h1>
</div>
<script src="./config.js"></script>
<script src="./src/index.ts"></script>
<!-- PAUSED SCREEN -->
<div id="paused-content-box">
<h1 id="clock-large">12:00</h1>
<h5 id="currently-paused">Paused: Song - Artist/Album</h5>
</div>
</body>
</html>