A-Frame完全加载时是否会触发某些事件?现在我已经设法让我的document.querySelector(".a-enter-vr-button")
工作了,但是只有在将它放在setTimeout
函数中之后,这似乎是一个临时解决方案。因此,如果有任何人在A-Frame完全加载后有任何方法使js脚本生效,请告诉我!
答案 0 :(得分:8)
您可以使用loaded
事件:
document.querySelector('a-scene').addEventListener('loaded', function () {...})
但我们建议您使用组件,这样您就不必处理等待事件设置的事件:
AFRAME.registerComponent('log', {
schema: {type: 'string'},
init: function () {
var stringToLog = this.data;
console.log(stringToLog);
}
});
然后使用HTML中的组件:
<a-scene log="Hello, Scene!">
<a-box log="Hello, Box!"></a-box>
</a-scene>