-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathantipiracy.html
More file actions
70 lines (62 loc) · 2.28 KB
/
Copy pathantipiracy.html
File metadata and controls
70 lines (62 loc) · 2.28 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHAAAME... SHAAAAME!!!</title>
<style>
body, html {
margin: 0;
padding: 0;
overflow: hidden;
height: 100%;
width: 100%;
}
.fullscreen-image {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
</style>
</head>
<body>
<audio id="background-music" loop>
<source src="music.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<img src="ILELGAL.png" class="fullscreen-image">
<script>
document.addEventListener("DOMContentLoaded", function() {
const music = document.getElementById("background-music");
// Try to autoplay music when the page loads
const tryAutoplay = () => {
music.play().then(() => {
console.log("Autoplay succeeded.");
}).catch(error => {
console.log("Autoplay failed. Waiting for user interaction...", error);
// Fallback to user interaction
enableUserInteractionFallback();
});
};
// Set up user interaction fallback if autoplay fails
const enableUserInteractionFallback = () => {
const playMusicOnInteraction = () => {
music.play().catch(error => {
console.log("Playback blocked even after user interaction:", error);
});
// Remove event listeners after the first interaction
document.removeEventListener("click", playMusicOnInteraction);
document.removeEventListener("touchstart", playMusicOnInteraction);
};
document.addEventListener("click", playMusicOnInteraction, { once: true });
document.addEventListener("touchstart", playMusicOnInteraction, { once: true });
};
// Attempt autoplay on page load
tryAutoplay();
});
</script>
</body>
</html>