-
Notifications
You must be signed in to change notification settings - Fork 11
/
ar0102-marker-camera.html
30 lines (27 loc) · 1.5 KB
/
ar0102-marker-camera.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
<!doctype HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<!-- Correcting zooming issue -->
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<!-- Library untuk VR membangun 3D -->
<script src="./js/aframe/aframe.min.js"></script>
<!-- Library untuk AR yang melakukan pengenalan marker dan menyematkan kamera-->
<script src="./js/arjs/aframe-ar.js"></script>
<title>WebAR: Marker Camera Occlusion</title>
</head>
<body style="margin : 0px; overflow: hidden;">
<!-- embedded vr-mode-ui="enabled: false" adalah untuk menonaktifkan tombol VR (stereocospic view) -->
<!-- debugUIEnabled: false adalah untuk menonaktifkan UI untuk debugging (true hanya untuk troubleshooting) -->
<a-scene embedded vr-mode-ui="enabled: false" arjs="debugUIEnabled: false;">
<!-- a-marker-camera membuat obyek tetap ada walau marker tidak terlihat -->
<a-marker-camera preset="hiro">
<a-box position="0 0.5 0" material="color: orange; opacity: 0.5;">
<a-torus-knot scale=".2 .2 .2" color="white" animation="property: rotation; to: 360 360 360; loop: true; dur: 10000; easing: linear;"></a-torus-knot>
<a-text value="Marker Hiro" position="0 .5 .6" rotation="-90 0 0" color="orange" align="center"></a-text>
</a-box>
</a-marker-camera>
</a-scene>
<!-- referensi: https://github.com/jeromeetienne/AR.js/issues/159 -->
</body>
</html>