-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzen.html
68 lines (58 loc) · 2.32 KB
/
zen.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
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
<!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">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link rel="stylesheet" href="https://use.typekit.net/lku7gbz.css">
<link rel="preload" href="//img1.wsimg.com/ux/fonts/sherpa/1.0/gdsherpa-regular.woff2" as="font" type="font/woff2"
crossorigin="">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="2k-space-icon.png">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-133299888-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-133299888-1');
</script>
<style>
.user-cursor {
display: none;
}
</style>
<title>2K Space - Zen Mode</title>
</head>
<body>
<div id="canvas-container" style="height: 100vh; width: 100vw; max-height: 100vh; max-width: 100vw; overflow: hidden;">
<div id="canvas-resizer" style="width: 5000px; height: 5000px;">
<div id="canvas-mover" style="width: 5000px; height: 5000px;">
<canvas id="main-canvas" style="pointer-events: none;"></canvas>
</div>
</div>
</div>
<div id="loading"><img src="2K-space-logo.png" alt="2K Space" height="200px"> <br>
<img src="space-loading-animation.gif" alt="Loading animation" height="60px"> <br> <br>
ZEN MODE.
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.9.1/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyADD6YWKrzibRMwJNi1FwUR0jcR0GitZPI",
authDomain: "k-inc-232222.firebaseapp.com",
databaseURL: "https://k-inc-232222.firebaseio.com",
projectId: "k-inc-232222",
storageBucket: "k-inc-232222.appspot.com",
messagingSenderId: "827804821456"
};
firebase.initializeApp(config);
</script>
<script src="index.js"></script>
<script src="zen.js"></script>
</body>
</html>