-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlabel.html
76 lines (54 loc) · 2.68 KB
/
label.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<title>Horse AR</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<!-- 🚨 REQUIRED: Web Components polyfill to support Edge and Firefox < 63 -->
<script src="https://unpkg.com/@webcomponents/[email protected]/webcomponents-loader.js"></script>
<!-- 💁 OPTIONAL: Intersection Observer polyfill for better performance in Safari and IE11 -->
<script src="https://unpkg.com/[email protected]/intersection-observer.js"></script>
<!-- 💁 OPTIONAL: Resize Observer polyfill improves resize behavior in non-Chrome browsers -->
<script src="https://unpkg.com/[email protected]/dist/ResizeObserver.js"></script>
<!-- 💁 OPTIONAL: Fullscreen polyfill is needed to fully support AR features -->
<script src="https://unpkg.com/[email protected]/dist/fullscreen.polyfill.js"></script>
<!-- 💁 OPTIONAL: Include prismatic.js for Magic Leap support
<script src="https://unpkg.com/@magicleap/prismatic/prismatic.min.js"></script> -->
<!-- 💁 OPTIONAL: The :focus-visible polyfill removes the focus ring for some input types -->
<script src="https://unpkg.com/[email protected]/dist/focus-visible.js" defer></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
</head>
<body>
<!-- <h1>Horse AR</h1> -->
<div class="container">
<!-- Horse Model 3-->
<div>
<div class="cards">
<model-viewer class="model_3" id="horse3" src="mshorse/scene-text.glb" ar autoplay camera-controls poster="images/background.png" exposure=0.3 interaction-prompt="auto" auto-rotate alt="Horse" background-color="#455A64" ios-src="mshorse/scene.usdz" quick-look-browsers="safari chrome">
</model-viewer>
<section class="attribution">
<span>
<h4>Horse Label</h4>
</span>
</section>
</div>
</div>
<div class="linkwrapper">
<div class="links">
<a href="kick.html"> <i class="fas fa-chevron-circle-left icons"></i> </a>
</div>
<div class="links">
<a href="index.html"> <i class="fas fa-chevron-circle-right icons"></i> </a>
</div>
</div>
</div>
<script type="module"
src="https://unpkg.com/@google/[email protected]/dist/model-viewer.js">
</script>
<!-- Loads <model-viewer> for old browsers like IE11: -->
<script nomodule
src="https://unpkg.com/@google/[email protected]/dist/model-viewer-legacy.js">
</script>
</body>
</html>