diff --git a/s4-world-2021au.html b/s4-world-2021au.html new file mode 100644 index 0000000..e249888 --- /dev/null +++ b/s4-world-2021au.html @@ -0,0 +1,79 @@ + + + +AR-Image_tracking.html + + + +

[[ RAW TEXT(DOWNLOAD here) ]]

+
+<!DOCTYPE html>
+<html>
+<head>
+<script src="https://cdn.jsdelivr.net/gh/aframevr/aframe@1c2407b26c61958baa93967b5412487cd94b290b/dist/aframe-master.min.js"></script>
+<script src="https://raw.githack.com/AR-js-org/AR.js/master/aframe/build/aframe-ar-nft.js"></script>
+<style>
+.arjs-loader {
+  height: 100%;
+  width: 100%;
+  position: absolute;
+  top: 0;
+  left: 0;
+  background-color: rgba(0, 0, 0, 0.8);
+  z-index: 9999;
+  display: flex;
+  justify-content: center;
+  align-items: center;
+}
+
+.arjs-loader div{
+  text-align: center;
+  font-size: 1.25em;
+  color: white;
+}
+</style>
+</head>
+<body style="margin : 0px; overflow: hidden;">
+<!-- minimal loader shown until image descriptors are loaded -->
+<div class="arjs-loader">
+  <div>Loading, please wait...</div>
+</div>
+<a-scene
+  vr-mode-ui="enabled: false;"
+  renderer="logarithmicDepthBuffer: true;"
+  embedded
+  arjs="trackingMethod: best; sourceType: webcam;debugUIEnabled: false;"
+>
+<!-- we use cors proxy to avoid cross-origin problems -->
+<a-nft
+  type="nft"
+  url="https://www.yatex.org/gitbucket/Fumiya238/AR-project/raw/master/material/nyanko1"
+  smooth="truei"
+  smoothCount="10"
+  smoothTolerance=".01"
+  smoothThreshold="5"
+>
+<a-entity
+  gltf-model="https://arjs-cors-proxy.herokuapp.com/https://raw.githack.com/AR-js-org/AR.js/master/aframe/examples/image-tracking/nft/trex/scene.gltf"
+  scale="5 5 5"
+  position="100 0 -100"
+  rotation="0 100 -100"
+>
+</a-entity>
+</a-nft>
+<a-entity camera></a-entity>
+</a-scene>
+</body>
+</html>
+
+ +