-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ghiacciaio.html
59 lines (51 loc) · 2.28 KB
/
Ghiacciaio.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en" class="fullscreen-100">
<head>
<meta charset="utf-8">
<title>Ghiacciaio del Lys</title>
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="white"/>
<meta name="description" content="">
<script src="https://unpkg.com/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="https://unpkg.com/fullscreen-polyfill/dist/fullscreen.polyfill.js"></script>
<script src="https://unpkg.com/focus-visible/dist/focus-visible.js" defer></script>
<script src="https://unpkg.com/event-target@latest/min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/ResizeObserver.global.js"></script>
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=IntersectionObserver"></script>
<style>
.color-button {
width: 30px;
height: 30px;
margin-top: 5px;
background-color: white;
border-radius: 50%;
}
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events:none;
}
.color-button.selected {
border: 2px solid #717171;
}
</style>
</head>
<body class="fullscreen-100">
<model-viewer id="modelViewer"
class='model-viewer' ar autoplay camera-controls disable-zoom src='https://uqido.github.io/geox-webar/models/GhiacciaiodelLys.glb'
ios-src='https://uqido.github.io/geox-webar/models/GhiacciaiodelLys.usdz' alt='' noloop camera-orbit="180deg 90deg 100%"
min-camera-orbit="auto auto 80%" ar-modes="scene-viewer webxr quick-look"
camera-target="0 0 1.5cm"
environment-image="neutral"
exposure="1" shadow-intensity="1.5" shadow-softness="0.8" quick-look-browsers="safari chrome">
<script src="js/LoadingBar.js"></script>
<script src="js/ContentCustomizer.js"></script>
</model-viewer>
<script type="module" src="js/model-viewer/dist/model-viewer.min.js"></script>
</body>
</html>