我想做的是,当我单击热点时,它应该会打开一个带有少量文本的弹出窗口。文本是静态的也可以,有什么办法可以实现呢?仅供参考,我正在为网络创建它。
提前感谢:)
答案 0 :(得分:1)
我刚开始使用Google VR。我知道这是一个较晚的答复,但很有可能。
function onVrViewLoad() {
// init scene here and then:
vrView.on('click', onHotspotClick)
}
function onHotspotClick(e) {
console.log('onHotspotClick', e.id)
triggerSidebar(e.id)
}
function triggerSidebar(id) {
// add the class
switch (id) {
case 'item':
document.querySelector('aside.item').classList.add('...')
break
}
}