-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
27 lines (26 loc) · 986 Bytes
/
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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Webxr Ar</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- <script type="module" src="/cube/normal-cube.js"></script> -->
<!-- <script type="module" src="/cube/xr-cube.js"></script> -->
<!-- <script type="module" src="/cube/xr-hit-cube.js"></script> -->
<!-- <script type="module" src="/model/xr-hit-models.js"></script> -->
<script type="module" src="/model/xr-domOverlay.js"></script>
<div id="overlay-content">
<div id="container">
<label for="model-select">Choose Model</label>
<select id="model-select">
<option value="chair">Chair</option>
<option value="bookcase">Bookcase</option>
</select>
</div>
</div>
<!-- Comment style display none for dom overlay to work in style.css file -->
</body>
</html>