forked from ryzetech/cider4obs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 1.67 KB
/
Copy pathindex.html
File metadata and controls
58 lines (54 loc) · 1.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cider4OBS</title>
<script src="https://cdn.socket.io/4.7.5/socket.io.min.js"
integrity="sha384-2huaZvOR9iDzHqslqwpR87isEmrfxqyWOF7hr7BY6KG0+hVKLoEXMPUJw3ynWuhO"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body onload="startWebSocket();">
<main id="content">
<div id="mainbox">
<img
crossorigin="anonymous"
id="albumimg"
src="c4obs.png"
width="84"
height="84"
alt="Album artwork">
<div class="track-info">
<span id="title" class="track-title">Cider4OBS Connector | Connecting...</span>
<span id="artist" class="track-artist">-/-</span>
<span id="album" class="track-album">-/-</span>
</div>
</div>
<div id="progressContainer">
<span id="currentTime" class="time-label">0:00</span>
<div id="progressBg" role="progressbar" aria-label="Playback progress">
<div id="progressBar"></div>
</div>
<span id="duration" class="time-label">0:00</span>
</div>
</main>
<div id="nextInQueue">
<div id="nextQueueBox">
<img
crossorigin="anonymous"
id="nextAlbumImg"
src=""
width="60"
height="60"
alt="Next track artwork">
<div class="track-info">
<span class="queue-label">Next in Queue</span>
<span id="nextTitle" class="track-title">-</span>
<span id="nextArtist" class="track-artist">-</span>
</div>
</div>
</div>
<script src="connector.js"></script>
</body>
</html>