-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (67 loc) · 3.37 KB
/
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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Model Viewer Demo</title>
<link rel="icon" type="image/png" href="./favicon.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css" integrity="sha256-vK3UTo/8wHbaUn+dTQD0X6dzidqc5l7gczvH+Bnowwk=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.js"></script>
<script nomodule src="https://unpkg.com/@google/model-viewer/dist/model-viewer-legacy.js"></script>
</head>
<body>
<!-- HERO -->
<style>
:root {
--progress-mask: #209cee;
--background-color: #209cee;
}
</style>
<section class="hero hero-background is-info is-fullheight">
<div class="hero-body">
<div class="container">
<div class="columns is-vcentered">
<div class="column is-offset-2-desktop">
<div class="">
<h1 class="title red is-2 is-spaced">WebAR demo.</h1>
<h2 class="subtitle is-4">View 3D-models in your <strong>browser</strong> and <strong>AR</strong>,<br>on <strong>iOS</strong> and <strong>Android</strong>.</h2>
</div>
</div>
<div class="column is-centered">
<div class="viewer-container" style="height: 400px; width: 100%; max-width: 100%">
<model-viewer style="width:100%; height:100%;" src="rc="/assets/dancing_unicorn.glb" ios-src="https://clients.vrtxlabs.com/usdz/dancing_unicorn.usdz" alt="Dancing Unicorn" autoplay camera-controls auto-rotate ar background-color="#209cee"></model-viewer>
</div>
<div class="viewer-container" style="height: 400px; width: 100%; max-width: 100%">
<model-viewer style="width:100%; height:100%;" src="/assets/on_176.glb" ios-src="https://vrtxlabs.com/assets/usdz/porto_couch_animated_ios13.usdz" alt="Wilkhahn" autoplay camera-controls auto-rotate ar background-color="#209cee"></model-viewer>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="footer has-text-centered has-background-dark has-text-light">
<div class="container">
<div class="columns">
<div class="column is-8-desktop is-offset-2-desktop">
<p>
<strong class="has-text-light has-text-weight-semibold">
Philipp Bontemps 2020
</strong>
</p>
<p>
<strong class="has-text-weight-semibold">
<a class="has-text-info" href="/impressum">Impressum</a> <a class="has-text-info" href="/datenschutz">Datenschutz</a>
</strong>
</p>
<p style="padding-top: 3rem;">
<a target="_blank" href="https://vrtxlabs.com/"><img style="max-height: 19px; margin: 0 10px;" class="vrtx is-inline-block" src="/images/vrtx-hor-new.svg"></a>
</p>
</div>
</div>
</div>
</footer>
</body>
</html>