在 A-Frame 中添加弹出文本

Adding pop-up text in A-Frame

如何使用 A-Frame 在 360 度照片中添加文字 文本应该像 弹出消息 当光标移动到任何图标时它应该弹出文本

示例:假设我在厨房,当光标转到厨房图标时它应该弹出文本 "kitchen"

提前致谢!

您可以添加一个事件侦听器来显示文本。

document.querySelector('#yourHotspot').addEventListener('mouseenter', function () {
  document.querySelector('#yourText').setAttribute('visible', true);
});