-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (46 loc) · 1.79 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
<!doctype HTML>
<html>
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<script src="js/aframe.min.js"></script>
<script src="js/aframe-ar.js"></script>
<script src="js/event.js"></script>
<body style="margin: 0px; overflow: hidden;">
<!-- set detectionMode and matrixCodeType to enable barcode marker detection and custom pattern files -->
<!-- https://github.com/stemkoski/AR.js-examples -->
<a-scene embedded vr-mode-ui="enabled: false;" arjs="debugUIEnabled: false; detectionMode: mono_and_matrix; matrixCodeType: 3x3;">
<a-assets>
<img id="grid" src="images/border.png" />
<img id="earth-flat" src="images/earth-flat.jpg" />
<img id="earth-sphere" src="images/earth-sphere.jpg" />
<img id="malogo" src="images/logoMA.jpg" />
</a-assets>
<a-marker type="pattern" url="data/kanji.patt">
<a-box position="0 0.5 0"
material="color: red; transparent: true; opacity: 0.50;">
</a-box>
</a-marker>
<a-marker type="barcode" value="0">
<a-box position="0 0.5 0"
material="src: #grid; color: yellow; transparent: true; opacity: 0.50;"
>
</a-box>
<a-plane position="0 0 0"
rotation="-90 0 0"
material="src: #malogo;">
</a-plane>
</a-marker>
<a-marker type="barcode" value="1">
<a-plane position="0 0 0"
rotation="-90 0 0"
material="src: #malogo;">
</a-plane>
</a-marker>
<a-marker type="barcode" value="2">
<a-sphere position="0 0.5 0"
material="src: #earth-sphere; transparent: true; opacity: 0.95;">
</a-sphere>
</a-marker>
<a-entity camera></a-entity>
</a-scene>
</body>
</html>