-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./assets/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Experiment: AR+websocket</title>
<!-- XR Extras - provides utilities like load screen, almost there, and error handling.
See github.com/8thwall/web/tree/master/xrextras -->
<script src="//cdn.8thwall.com/web/xrextras/xrextras.js"></script>
<!-- 8thWall Web - Replace the app key here with your own app key -->
<script
async
src="//apps.8thwall.com/xrweb?appKey=4OHKKgOPLoi1r7fSIHu0H1bNAFfDTfN7lhEJqTk3SpqYPmUbuq1VMy3mTQWJA6tG0gMSbX"
></script>
<!-- <script
async
src="//apps.8thwall.com/xrweb?appKey=2K5kXwrCBWRleTzkkxLqzoJL3eyhsslSXJJVvhld1kkSAHknbwckSQUye10YuJ5CXRb3o2"
></script> -->
</head>
<body>
<div id="ui-container"></div>
<canvas id="experience"></canvas>
<script type="module" src="./js/app.js"></script>
</body>
</html>