-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.22 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.22 KB
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
<html>
<head>
<title>Web AR</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="demo-styles.css">
<script src="focus.js" defer></script>
</head>
<body>
<div id="card">
<model-viewer src="Astronaut.glb"
ios-src="Astronaut.usdz"
poster="loading_screen.gif"
alt="A 3D model"
shadow-intensity="1"
camera-controls
auto-rotate ar>
</model-viewer>
<section class="attribution">
<span>
<h1>Web AR Viewer</h1>
<span>To view the source code, <a href="https://github.com/lightlessdays/WebAR" target="_blank">click here.</a></span>
</span>
<a class="cc" href="https://github.com/lightlessdays/web-ar/blob/main/LICENSE.md" target="_blank">
<img src="https://mirrors.creativecommons.org/presskit/icons/cc.svg">
<img src="https://mirrors.creativecommons.org/presskit/icons/by.svg">
</a>
</section>
</div>
<script type="module"
src="model-viewer.min.js">
</script>
</body>
</html>