-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
40 lines (38 loc) · 1.34 KB
/
404.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<title>404|XLuoFox.DSY</title>
</head>
<body style="cursor: none; background-color: #000">
<img src="/file/img/bsod.png" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 114514" id="114514" />
<script>
// 通过ID获取元素
function yi_元素_获取_使用ID(elementId) {
return document.getElementById(elementId);
}
var audio = new Audio("/file/aud/3000hz.mp3");
setTimeout(function () {
// 5000 ms
yi_元素_获取_使用ID("114514").src = "/file/img/black.png";
setTimeout(function () {
// 2000 ms
yi_元素_获取_使用ID("114514").src = "/file/img/nosgin.png";
setTimeout(function () {
// 1000 ms
yi_元素_获取_使用ID("114514").src = "/file/img/black.png";
audio.play();
setTimeout(function () {
// 1000 ms
yi_元素_获取_使用ID("114514").src = "/file/img/start.png";
setTimeout(function () {
// 2000 ms
window.location.href = "/index.html";
}, 2000);
}, 1000);
}, 1000);
}, 2000);
}, 5000);
</script>
</body>
</html>