0

我正在使用这个库https://ar-js-org.github.io/AR.js-Docs/marker-based/开发 web ar ,我想在标记检测时呈现 html 内容。这是基于ARjs 标记的简单示例

<html>
 <script src="https://aframe.io/releases/1.0.0/aframe.min.js"></script>
 <script src="https://raw.githack.com/AR-js-org/AR.js/master/aframe/build/aframe-ar.js"></script>
  <body style="margin : 0px; overflow: hidden;">
    <a-scene embedded arjs>
    <a-marker preset="hiro">
        <a-entity
        position="0 -1 0"
        scale="0.05 0.05 0.05"
        gltf-model="your-server/https://raw.githack.com/AR-js-org/AR.js/master/aframe/examples/image-tracking/nft/trex/scene.gltf"
        ></a-entity>
    </a-marker>
    <a-entity camera></a-entity>
    </a-scene>
</body>

我还发现了这个用于 html 嵌入的存储库https://github.com/supereggbert/aframe-htmlembed-component 。这显示 html 嵌入在 a-scene 标记中,但每当我在 a-marker 标记之间添加此内容时都不起作用。

<a-marker preset="hiro">
  <a-entity htmlembed position="0 0 -5">
    <h1>An Example</h1>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
  </a-entity>
</a-marker>

我不确定库(https://github.com/supereggbert/aframe-htmlembed-component),我是否正在使用 ARJS。请建议是否有更好的方法来解决该问题或我的代码有问题。谢谢

4

0 回答 0