如何在 360 图像 A 帧上添加文本和图像

how to add text and image over the 360 images A-Frame

我想在 A-Frame 的 360 度图像上添加文本和图像如何在 360 度以上添加文本和图像?

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<!-- A-Frame standard library if needed -->
<script src="https://aframe.io/releases/latest/aframe.js"></script>
<!-- Component (includes A-Frame core) -->
<script src="dist/aframe-no-click-look-controls.min.js"></script>
</head>
<body>
<a-scene>
    <a-entity camera no-click-look-controls></a-entity>
            <h1>hello</h1>
    <a-sky src="https://cdn.glitch.com/fbc36a5e-0d0e-45d3-b6cb-
   0c1f01f6cd8e%2FMuttukadu%20Boat%20House(2K).jpg?1491283410006" 
  rotation="0 -130 0"></a-sky>
</a-scene>
</body>
</html>

您可以将 a-scene 包裹在 div 中并在其上设置 position:relative。接下来,将另一个 div 添加到第一个的内容(在 a-scene 之后)并在其上设置 position:absolute 。这会将第二个 div 的内容覆盖在 a-scene 之上。接下来,您需要做的就是根据需要定位第二个 div 并在其中添加文本和图像。如果第二个 div 内容未显示,请考虑调整它的 z-index 值。

生成的代码如下所示:

<div style="position:relative;">
    <a-scene>
        <!-- a-scene content here -->
    </a-scene>
    <div style="position:absolute; top:0px; left:0px; z-index:1000;">
        <!-- your overlay content here -->
    </div>
</div>