forked from StormLooper/Exit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (35 loc) · 824 Bytes
/
index.html
File metadata and controls
36 lines (35 loc) · 824 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
28
29
30
31
32
33
34
35
36
<html>
<link rel=icon href=/favicon.png>
<head>
<title>Exit</title>
<style>
body {
margin: 0;
}
</style>
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
</head>
<body>
<div id="user-interaction-container"></div>
<!-- Attachment point for your app -->
<div id="container"></div>
<div
id="navBar"
style="z-index: 999;position: absolute;top:0px;right:0px;"
></div>
<script src="./client.bundle?platform=vr"></script>
<script>
// Initialize the React 360 application
React360.init(
"index.bundle?platform=vr&dev=true",
document.getElementById("container"),
{
assetRoot: "static_assets/"
}
);
</script>
</body>
</html>