-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 841 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>model viewer sample</title>
<script type="module"
src="https://unpkg.com/@google/model-viewer/dist/model-viewer.js"></script>
</head>
<body>
<div style="width:100%; margin:0 auto; height:80vh;">
<model-viewer
alt="desk_chair"
src="https://unsolublesugar.github.io/blender-model-viewer/desk_chair.gltf"
style="width:100%;height:100%;"
background-color="#ECECEC"
shadow-intensity="0.9"
exposure="0.7"
camera-controls
autoplay
ar-modes="scene-viewer webxr quick-look"
auto-rotate ar>
</model-viewer>
</div>
</body>
</html>