-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (41 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
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>spotinfo.js</title>
<link href="example.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table id="player" class="musicbox">
<tr>
<td class="playerlogo" onclick="location.href='https://github.com/fluffy-git/spotinfo.js'" > <img src="spotinfo.js.full.svg"> by fluffy </td>
</tr>
<tr>
<td class="coverimgtd">
<img id="player-album-art" class="coverimg" />
</td>
</tr>
<tr>
<td>
<div class="songinfocont">
<div id="player-status" class="songinfostatus"></div>
<div id="player-song" class="songinfosong"></div>
<div id="player-artist" class="songinfoartist"></div>
</td>
</tr>
<tr>
<td colspan="2" id="player-pt">
<div id="player-progress-back" class="songinfoplayerprogressback">
<div id="player-progress" class="songinfoplayerprogress"></div>
</div>
<div id="player-time" class="songinfoplayertime"></div>
</td>
</tr>
<tr>
<td class="songunder left" onclick="location.reload();"> stuck? click me</td> <td class="songunder right" onclick="location.href='https://github.com/fluffy-git/spotinfo.js'" > source</td>
</tr>
</table>
<script src="spotinfo.js"></script>
</body>
</html>