隐藏虚拟现实符号并禁用控件
Hiding the virtual reality symbol and disabling controls
是否可以隐藏在您的鼠标悬停在虚拟现实视图上之前出现的虚拟现实符号?
似乎无法禁用所有控件。您可以在移动设备上使用 disableTouchPanning 禁用触摸平移,它仍然使用设备方向。
ReactVR.init(
'./index.bundle.js',
document.body,
options = {
disableTouchPanning: true,
hideFullscreen: true,
hideCompass: true,
}
);
(参见 https://github.com/facebook/react-vr/blob/master/ReactVR/js/VRInstance.js)
谢谢!
我想我找到了隐藏此图标的方法 - 可能有点作弊但似乎有效 :D
在index.html
header中,我添加了:
<style> div > div > div {display: none}</style>
因为它是 'cheat' 我也不确定它是否会一直有效,但这只是一个想法,你可以从那一点开始检查它;)
是否可以隐藏在您的鼠标悬停在虚拟现实视图上之前出现的虚拟现实符号?
似乎无法禁用所有控件。您可以在移动设备上使用 disableTouchPanning 禁用触摸平移,它仍然使用设备方向。
ReactVR.init(
'./index.bundle.js',
document.body,
options = {
disableTouchPanning: true,
hideFullscreen: true,
hideCompass: true,
}
);
(参见 https://github.com/facebook/react-vr/blob/master/ReactVR/js/VRInstance.js)
谢谢!
我想我找到了隐藏此图标的方法 - 可能有点作弊但似乎有效 :D
在index.html
header中,我添加了:
<style> div > div > div {display: none}</style>
因为它是 'cheat' 我也不确定它是否会一直有效,但这只是一个想法,你可以从那一点开始检查它;)