-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 735 Bytes
/
Copy pathindex.html
File metadata and controls
38 lines (35 loc) · 735 Bytes
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
36
37
38
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<title>Tempio Greco AR</title>
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
<style>
body {
margin: 0;
background-color: #f4f4f4;
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
margin-top: 20px;
}
model-viewer {
width: 100%;
height: 80vh;
}
</style>
</head>
<body>
<h1>Tempio Greco – Esperienza AR</h1>
<model-viewer
src="Tempio greco.glb"
ios-src="Tempio greco.usdz"
ar
ar-modes="scene-viewer quick-look"
camera-controls
auto-rotate
shadow-intensity="1">
</model-viewer>
</body>
</html>