-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
28 lines (27 loc) · 1.25 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="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AR Indoor Navigation - WebXR</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<script type="module" src="/main.js"></script>
</head>
<body>
<!-- images for webxr image tracking; still in draft so it may change in future -->
<img id="imgMarkerHiro" src="https://raw.githubusercontent.com/stemkoski/AR.js-examples/master/markers/hiro.png" alt="hiro" style="display: none" />
<img id="imgNFTEarth" src="https://raw.githubusercontent.com/stemkoski/AR.js-examples/master/images/earth-flat.jpg" alt="earth" style="display: none" />
<!-- spinner for AR.js load process -->
<!-- <div class="arjs-loader">
<div class="arjs-loader-spinner"></div>
</div> -->
<div id="scene-container">
<!-- Our <canvas> will be inserted here -->
</div>
<div id="wrapper">
<button id="kitchenTarget">KITCHEN</button>
<button id="livingRoomTarget">LIVING ROOM</button>
</div>
</body>
</html>