-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.html
58 lines (54 loc) · 2.21 KB
/
display.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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="display.css">
<meta charset="utf-8">
<title>Spotify experiment</title>
</head>
<body>
<!-- <div id="title-bar">
<div id="title"> </div>
<div id="title-bar-btns">
<button class="menu-button" id="dev-btn">🔧</button>
<button class="menu-button" id="min-btn">➖</button>
<button class="menu-button" id="max-btn">➕</button>
<button class="menu-button" id="close-btn">✖️</button>
</div>
</div>-->
<div id="board">
<div id="history-wrapper">
<div id="history-title">History</div>
<div class="history-box">
<div class="history-picture"> <img class="added-picture" src="" height="110" /></div>
<div class="history-song"></div>
<div class="history-artist"></div>
<div class="history-action"></div>
<button class="history-button" id="close-btn"onclick="removeAction(0)">🗑️</button>
</div>
<div class="history-box">
<div class="history-picture"> <img class="added-picture" src="" height="110" /></div>
<div class="history-song"></div>
<div class="history-artist"></div>
<div class="history-action"></div>
<button class="history-button" id="close-btn" onclick="removeAction(1)">🗑️</button>
</div>
<div class="history-box">
<div class="history-picture"><img class="added-picture" src="" height="110" /></div>
<div class="history-song"></div>
<div class="history-artist"></div>
<div class="history-action"></div>
<button class="history-button" id="close-btn" onclick="removeAction(2)">🗑️</button>
</div>
</div>
<div id="card-wrapper">
<div class="player">
<audio id="audio-element" autoplay loop=loop preload="none" style="background-color:#C8C8C8;" controls
src="" type="audio/mpeg">
Your Browser Does Not Support Radio</audio>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/hammer.js/2.0.8/hammer.min.js"></script>
<script src="./display.js"></script>
</body>
</html>