-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
executable file
·27 lines (27 loc) · 790 Bytes
/
Copy path404.html
File metadata and controls
executable file
·27 lines (27 loc) · 790 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>文詣不文藝</title>
</head>
<body>
<script type="text/javascript" src="//qzonestyle.gtimg.cn/qzone/hybrid/app/404/search_children.js" charset="utf-8" homePageUrl="https://alphaidea.github.io" homePageName="回到我的主页"></script>
<script language="javascript">
let oSecs = 10;
function time() {
oSecs --;
if (oSecs < 0) {
clearInterval();
return;
}
if (oSecs === 0) {
clearInterval();
window.location.href = 'https://alphaidea.github.io';
}
}
setInterval(time, 1000)
</script>
</body>
</html>