-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLiveShow.html
64 lines (53 loc) · 1.68 KB
/
LiveShow.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
59
60
61
62
63
64
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="visualPlayer.css" />
<title>Our Funky HTML Page</title>
</head>
<body>
<div class='player'>
<div class='player_inner'>
<div id="scroll-container">
<h3 class="scroll-text" id="live">Now Playing</h3>
</div>
<div class='player_inner__middle'>
<div class='cube'>
<div class='cube_inner'>
<div id="DJshowLogo" class='cube_inner__front'>
<div class='details'>
<div class='details_album'></div>
</div>
</div>
</div>
</div>
</div>
<div class='player_inner__bottom'>
<button class="button" id="DJ_button">
<h1 id="bio">DJ artist</h1>
</button>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<img class="DJimg" src="https://titanradio.org/wp-content/uploads/2021/10/djTeal.png"/>
<h1 id="DJname">DJ Name</h1>
<p id="DJbio">DJ Bio</p>
<p id="DJshowBio">DJshowBio</p>
</div>
</div>
<div class='playbar'>
<div id='playbar_inner'></div>
<div class='playbar_left'>
<div id="songTimer"></div>
</div>
<div class='playbar_right'>
<span>1:00:00</span>
</div>
</div>
<script src="https://embed.radio.co/player/d1a002c.js"></script>
</div>
</div>
</div>
</body>
<script src="DJSchedule.js"></script>
<script src="timer.js"></script>
</html>