kontakt.html 680 Bytes
Newer Older
Wolfgang Knopki's avatar
Wolfgang Knopki committed
1
2
<!DOCTYPE html>
<html>
Alfakhori's avatar
Alfakhori committed
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
    <script src="https://aframe.io/releases/1.3.0/aframe.min.js"></script>
    <!-- we import arjs version without NFT but with marker + location based support -->
    <script src="https://raw.githack.com/AR-js-org/AR.js/dev/aframe/build/aframe-ar.js"></script>
    <body style="margin : 0px; overflow: hidden;">
        <a-scene embedded arjs>
        <a-marker preset="hiro">
            <a-entity
            position="0 0 0"
            rotation="0 0 0"
            scale="0.05 0.05 0.05"
            gltf-model="assets/scene.gltf"
            ></a-entity>
        </a-marker>
        <a-entity camera></a-entity>
        </a-scene>
    </body>
Wolfgang Knopki's avatar
Wolfgang Knopki committed
19
</html>