-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (19 loc) · 1003 Bytes
/
index.html
File metadata and controls
22 lines (19 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype HTML>
<html>
<script src="https://aframe.io/releases/0.6.1/aframe.min.js"></script>
<script src="https://cdn.rawgit.com/jeromeetienne/AR.js/1.5.0/aframe/build/aframe-ar.js"> </script>
<body style='margin : 0px; overflow: hidden;'>
<a-scene embedded arjs>
<a-marker preset="hiro">
<!-- <a-box position='0 0.5 0' material='color: black;'></a-box> -->
<a-cone position='0 0 0' color="tomato" radius-bottom="0.25" radius-top="0.01"></a-cone>
<a-sphere color="tomato" position='0 0.5 0' radius="0.20"></a-sphere>
<a-cone position='-1 0 0' color="yellow" radius-bottom="0.25" radius-top="0.01"></a-cone>
<a-sphere color="yellow" position='-1 0.5 0' radius="0.20"></a-sphere>
<a-cone position='1 0 0' color="teal" radius-bottom="0.25" radius-top="0.01"></a-cone>
<a-sphere color="teal" position='1 0.5 0' radius="0.20"></a-sphere>
</a-marker>
<a-entity camera></a-entity>
</a-scene>
</body>
</html>