我正在努力使用 react 360 在手机上播放音频。通过阅读各种文档,我了解到为了在移动设备上播放音频,我需要制定一个 html 实体来创建用户交互。用户通过单击按钮进行交互后,音频应该能够在移动设备上播放。情况似乎并非如此。
在我的index.html
文件中,我有以下代码:
<html>
<head>
<title>ExampleVR</title>
<style>body { margin: 0; }</style>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<!-- Attachment point for your app -->
<div id="container">
<button id="enter" onclick="enterApp();">
Click to Enter VR
</button>
</div>
<script src="./client.bundle?platform=vr"></script>
<script>
// Initialize the React 360 application
function enterApp() {
React360.init(
'index.bundle?platform=vr&dev=true',
document.getElementById('container'),
{
assetRoot: 'static_assets/',
}
);
}
</script>
</body>
</html>
如您所见,我已经创建了一个html按钮,单击该按钮时,会加载我的React 360代码。但是,当我在移动设备中单击VrButton
时,它仍然无法播放。我遵循了记录的建议,它适用于除移动设备以外的所有桌面浏览器。有谁知道如何解决这个问题?
这是解决音频问题的解决方案:
https://github.com/facebook/react-360/issues/652