-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
166 lines (147 loc) · 4.28 KB
/
index.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0, viewport-fit=cover">
<title>Ultra Globe</title>
<style>
body {
margin: 0;
width: 100%;
height: 100%;
touch-action: none;
}
.footer {
position: absolute;
bottom: 0%;
width: 100%;
height: 100px;
background: #151515;
z-index: 1000;
box-shadow: 0 0 0 4px #353535, 0 0 0 5px #3e3e3e, inset 0 0 10px rgba(0, 0, 0, 1);
}
.outlinedText {
position: absolute;
text-align: center;
margin: 0;
padding: 0;
font-family: sans-serif;
text-align: center;
font-weight: bold;
color: rgb(0, 0, 0);
font-size: 14px;
padding: 15px 0;
text-transform: uppercase;
letter-spacing: 3px;
-webkit-text-fill-color: rgb(255, 255, 255);
-webkit-text-fill-color: rgb(255, 255, 255);
}
.outlinedText2 {
position: absolute;
text-align: center;
margin: 0;
padding: 0;
font-family: sans-serif;
text-align: center;
font-weight: bold;
color: rgb(0, 0, 0);
font-size: 14px;
padding: 15px 0;
text-transform: uppercase;
letter-spacing: 3px;
-webkit-text-fill-color: rgb(255, 255, 255);
-webkit-text-fill-color: rgb(255, 255, 255);
}
.dropbtn {
background-color: #cab854;
color: white;
padding: 16px;
font-size: 16px;
border: none;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content a {
font-size: 20px;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropbtn {
background-color: #ac9d48;
}
.unselectable {
-webkit-user-select: none;
/* Safari */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently supported by Chrome, Opera, and Safari */
}
.progress-container {
position: absolute;
right: 2%;
bottom: 10%;
width: 20%;
z-index: 2000;
background-color: #e0e0e0;
border-radius: 5px;
overflow: hidden;
}
.progress-bar {
width: 0%;
height: 30px;
background-color: #76c7c0;
text-align: center;
line-height: 30px;
color: white;
transition: width 0.25s;
}
</style>
</head>
<body>
<div id="screen" oncontextmenu="return false;" style="position:absolute;width:100%; height:100%;"></div>
<div id="website" class="outlinedText2" class="unselectable"
style="position: absolute;top: 20px; left:25px; z-index: 99;font-size: 16px;font-family: 'Orbitron', sans-serif;letter-spacing: 0.3em;cursor: pointer;">
<img src="https://storage.googleapis.com/jdultra-website/assets/iconSmall.png" class="unselectable" width="14px"
height="14px"><span class="unselectable">
JDULTRA</span>
</div>
<div class="progress-container" style="visibility: hidden;">
<div id="progressBar" class="progress-bar">0%</div>
</div>
<!-- <div id="help" class="outlinedText2" class="unselectable"
style="position: absolute;bottom: 5px; right:25px; z-index: 99;font-size: 16px;font-family: 'Orbitron', sans-serif;letter-spacing: 0.3em;">
<span class="unselectable">Pan: Left click | Rotate: Right click | Zoom: mouse wheel</span>
</div> -->
<script>
document.getElementById('screen').addEventListener('wheel', function (event) {
event.preventDefault();
}, { passive: false });
document.getElementById('website').addEventListener('click', function () {
window.location.href = 'http://www.jdultra.com';
});
</script>
<video id="video" style="display:none" autoplay muted playsinline></video>
<script type="module" src="/src/index.js"></script>
</body>
</html>