-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (22 loc) · 1.09 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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>8th Wall Web: three.js image targets</title>
<link rel="stylesheet" type="text/css" href="index.css">
<!-- THREE.js must be supplied -->
<script src="//cdnjs.cloudflare.com/ajax/libs/three.js/106/three.min.js"></script>
<!-- XR Extras - provides utilities like load screen, almost there, and error handling.
See github.com/8thwall/web/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=XXXXXXXX"></script>
<!-- client code -->
<script src="index.js"></script>
</head>
<body>
<canvas id="camerafeed"></canvas>
<div id="unmuteButton" style="position:absolute;top:10px;right:10px;z-index: 99;"><img id="unmuteButtonImg" src="./round_volume_off_white_36dp.png" width="35px" height="35px"></div>
</body>
</html>