A-Frame/Google Chrome 在 2019 年是否有适当的 link 遍历?

Does A-Frame/Google Chrome have proper link traversal in 2019?

我能找到的最早信息是从 2017 年开始的。

我在 A 帧中 link 编辑了多个页面,但每当用户转到下一页时,它就会将他们踢出 VR 模式。 link 遍历在 2019 年得到了很好的支持还是我遗漏了什么?用户是否可以在 VR 中从一个页面转到另一个页面而不被踢出?

非常感谢任何帮助。

    <a-scene>
    <a-assets>
        <img id="box" src="img/white.jpg">
        <img id="stroke" src="img/stroke.png">
        <img id="cityhall" src="img/cityhall.jpg">
         <img id="clock" src="img/clock.jpg">
        <img id="titanic" src="img/titanic.jpg">
        <img id="logo" src="img/logo.png">
        <img id="shadow2" src="img/radial-shadow-2.png">
        <img id="background" src="img/360background.jpg">
    </a-assets>

    <a-image radius="5.7" position="0 -5 0" src="#shadow2" rotation="-90 0 0" scale="6 6 6"></a-image>

    <!-- CURSOR ENTITY -->
    <a-entity rotation="-10 0 0" position="0 0 0">
        <a-entity id="camera" camera look-controls rotation="0 0 0" wasd-controls>
            <!-- MAIN CURSOR -->
            <a-entity cursor="fuse: true; maxDistance: 500; timeout: 3000;" id="cursor-main" position="0 0 -2" geometry="primitive: ring; radiusOuter: 0.04; radiusInner: 0.03; thetaLength: 360; thetaStart: 90;" material="color: #439DC2;">
                <a-animation begin="cursor-fusing" attribute="geometry.thetaLength" fill="forwards" from="360" to="0" easing="ease-in"></a-animation>
                <a-animation begin="mouseleave" attribute="geometry.thetaLength" fill="backwards" from="0" to="360" dur="0"></a-animation>
            </a-entity>
            <a-entity id="cursor-loader" position="0 0 -2.0001" geometry="primitive: ring; radiusOuter: 0.04; radiusInner: 0.03;" material="color: #2ADD2A;">
            </a-entity>
        </a-entity>
    </a-entity>

    <a-sky src="#background"></a-sky>

</a-scene>

Chrome 不起作用。 Link 遍历 WebVR 规范仅受 Firefox、Samsung Internet、Oculus Browser 和 Supermedium 支持。