-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnowplaying.html
29 lines (29 loc) · 1.03 KB
/
nowplaying.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="icon.png">
<title>Now Playing Widget</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div id="lfade" class="active"></div>
<img id="cover-new" class="active" src="default.png">
<div class="bars">
<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg">
<rect class="bar bar1" x="10" y="30" width="10" height="10" rx="5" ry="5"/>
<rect class="bar bar2" x="25" y="30" width="10" height="10" rx="5" ry="5"/>
<rect class="bar bar3" x="40" y="30" width="10" height="10" rx="5" ry="5"/>
</svg>
</div>
<img id="coveroverlay" src="blank.png">
<div class="main">
<h2 id="name" class="active">Retrieving...</h2>
<h4 id="artists" class="active"></h4>
</div>
</div>
<script type="module" src="widget.js"></script>
</body>
</html>