Skip to content

Commit

Permalink
✨ feat(app): add marker card version
Browse files Browse the repository at this point in the history
  • Loading branch information
gerdesque committed Aug 17, 2024
1 parent 12b143e commit 304250f
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 0 deletions.
Binary file added assets/markerCard.fset
Binary file not shown.
Binary file added assets/markerCard.fset3
Binary file not shown.
Binary file added assets/markerCard.iset
Binary file not shown.
Binary file added assets/markerCard.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions markerCard.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="de">
<head>
<title>Blaues Wunder</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/assets/favicon.svg" type="image/svg+xml">
<link rel="alternate icon" href="/assets/favicon.ico" type="image/png" sizes="16x16">
<link rel="apple-touch-icon" href="/assets/apple-touch-icon-180x180.png" sizes="180x180">
<link rel="mask-icon" href="/assets/favicon.svg" color="#FFFFFF">
<meta name="theme-color" content="#ffffff">
<script src="https://aframe.io/releases/1.0.4/aframe.min.js"></script>
<script src='https://raw.githack.com/AR-js-org/AR.js/master/aframe/build/aframe-ar-nft.js'></script>

</head>

<body style='margin : 0px; overflow: hidden;'>
<a-scene
vr-mode-ui="enabled: false;"
renderer="logarithmicDepthBuffer: true;"
embedded arjs='trackingMethod: best; sourceType: webcam; debugUIEnabled: false;'>

<a-nft
type='nft' url='assets/trex'
smooth='true' smoothCount='10' smoothTolerance='0.01' smoothThreshold='5'>
<a-entity
gltf-model='assets/bridge-v2.glb'
scale="5 5 5"
position="100 100 0"
>
</a-entity>
</a-nft>
<a-entity camera></a-entity>
</a-scene>
</body>
</html>

0 comments on commit 304250f

Please sign in to comment.