-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.09 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.09 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
<!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">
<title>VoidHack</title>
<link rel="icon" href="assets/logo.png">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/main.js"></script>
<script src="js/particles.min.js"></script>
<script src="http://threejs.org/examples/js/libs/stats.min.js"></script>
</head>
<body onclick="ontextclick()" style="cursor: pointer;">
<div id="clicktext_container" style="width: auto; height: auto;" class="screen_center">
<h1 id="justclick_text">Just click...</h1>
</div>
<script>
function ontextclick() {
$("body").prop("onclick", "").prop("style", "cursor: cursor;");
$("body").fadeOut(500, () => {
$("body").load("pagecontent.html", () => {
initializeVoidHackWebpage();
});
}).fadeIn(500);
}
</script>
</body>
</html>