-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
55 lines (49 loc) · 2.08 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="img/logo.png">
<title>Drive Listen Korea</title>
</head>
<body>
<div class="video-background">
<div class="video-foreground">
<iframe src="https://www.youtube.com/embed/?list=PLNl8d1oYl-Loc5n9xifM0APcnhUyEDbcv&index=<?php print rand(1, 17) ?>&controls=0&showinfo=0&rel=0&autoplay=1&mute=1&loop=1&start=200&end=200" allowtransparency="true" title="YouTube video player" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="hide">
<a onclick="myFunction()"><img src="img/icon.png" width="15px" alt=""></a>
</div>
<div id="vidtop-content">
<div class="vid-info">
<div class="img">
<img src="img/logo.png" alt="" width="50px">
</div>
<h3>Drive Listen Korea</h3>
<audio autoplay id="myAudio">
<source src="https://listen.moe/kpop/stream" type="audio/mpeg">
</audio>
<div id="myDIV">
<p><b>Listen K-pop</b></p>
<a class="btn" onclick="playAudio()">Play Audio</a>
<a class="btn" onclick="pauseAudio()">Pause Audio</a>
<div class="slidecontainer">
<input type="range" class="slider" id="rngVolume" min="0" max="1" step=".01" value=".3" />
</div>
</div>
<br>
<p><b>About Us</b></p>
<a class="follow" href="https://www.instagram.com/zcode25/" target="_blank">Follow Us</a>
<a class="sawer" href="https://saweria.co/azein25" target="_blank">Donate</a>
<br>
<p>Production</p>
<p class="info-2">ZCODE</p>
<p class="info">© 2022 Drive Listen Korea.</p>
</div>
</div>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>