-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
55 lines (55 loc) · 2.16 KB
/
Copy pathindex.php
File metadata and controls
55 lines (55 loc) · 2.16 KB
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>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DJ Hour • Splash</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="assets/custom.css?<?php echo filemtime('assets/custom.css');?>">
<link rel="stylesheet" href="assets/app.css?<?php echo filemtime('assets/app.css');?>">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="https://cdn.discordapp.com/attachments/1004467067279396924/1006657429582389349/logo69.png">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdn.jsdelivr.net/gh/foobar404/wave.js/dist/bundle.js"></script>
</head>
<body style="width: 100vw; height: 100vh; position: fixed; top: 0; left: 0; z-index: 999">
<audio volume="0" src="https://stream.dj-hour.co.uk" class="djhour-stream"></audio>
<div class="songbg" draggable="false">
</div>
<div class="songart" draggable="false">
</div>
<div class="info">
<span class="songTitle">Loading..</span>
<br>
<span class="songArtist">Loading..</span>
</br>
</div>
<canvas class="vis"></canvas>
<span class="audio-btn-play" onclick="playDJhour()"><i class="audio-play fas fa-play"></i></span>
<script src="assets/app.js?<?php echo filemtime('assets/app.js'); ?>"></script>
<script src="assets/vis.js?<?php echo filemtime('assets/vis.js'); ?>"></script>
<script>
document.addEventListener('contextmenu',(e)=>{
e.preventDefault();
}
);
document.onkeydown = function(e) {
if(event.keyCode == 123) {
return false;
}
if(e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)) {
return false;
}
if(e.ctrlKey && e.shiftKey && e.keyCode == 'C'.charCodeAt(0)) {
return false;
}
if(e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) {
return false;
}
if(e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)) {
return false;
}
}
</script>
</body>
</html>