首页 > 解决方案 > 通过注视按钮在 Aframe 中进入 VR

问题描述

我启用了 vr-mode-ui,我想在我的框架场景中有一个按钮,通过单击进入 vr 模式。我的问题是我的 js 给了我一个 TypeError: document.getElementById(...) is null 我不知道为什么!

<script>
AFRAME.registerComponent('enter', {
  init: function () {
  }
}); 

document.getElementById('startbutton').addEventListener("click", (e)=>{
    scene.enterVR(true);
});
</script>

<a-scene id="scene" antialias="true"; cursor="rayOrigin: mouse" vr-mode-ui="enabled: true">

<a-assets>
<img id="startscreen" src="start_overlay.png">  
</a-assets>

<!-- Environment -->

<a-sky id="environment" radius="9" rotation="0 -90 0"; material="shader: flat; src: #xxx"></a-sky>

<!-- Camera + cursor + Startscreen + Interaction-->
<a-entity look-controls>
    <a-entity id="start">
            <a-plane id="startbutton" class="link"; height="0.5"; width="5"; position="0 -0.7 -2" rotation="0 0 0" color="#ffbff0">

            <a-text align="center" value="START" width="10" color="#e143a1"></a-text>
            </a-plane>

    </a-entity>

    <a-entity id="cam" camera rotation="0 0 0" mouse-cursor>                
        <a-cursor id="cursor" color="red"
          animation__click="property: scale; startEvents: click; from: 0.1 0.1 0.1; to: 1 1 1; dur: 150"
          animation__fusing="property: fusing; startEvents: fusing; from: 1 1 1; to: 0.1 0.1 0.1; dur: 1500"
          event-set__1="_event: mouseenter; color: white"
          event-set__2="_event: mouseleave; color: red"
          fuse="true"
          raycaster="objects: .link"></a-cursor>
    </a-entity>

</a-entity>

</a-scene>

我不t know why my button isn被 js-script 识别!

有人可以帮忙吗,拜托!干杯,可以

标签: javascriptbuttonaframe

解决方案


执行代码时,按钮可能不会出现在 DOM 中。要么:
1) 将代码放入 AFRAME 组件中,
2) 将代码放在 HTML 正文之后,或者
3) 将其放在window.onload回调中:

window.onload = function() {
  doSomething();
};


此外,正如您在文档中看到的那样,正确的方法是调用enterVR(), 或exitVR()在场景元素上。确保scene您使用的引用实际包含场景元素。


推荐阅读