我在three.js中有一个带有webgl 360全景图的项目。我在支持deviceorientation和webgl的浏览器中显示全景图,并为不支持它们的浏览器显示静态图像。
但是我对firefox(v 43.0)有这个问题。
如果我使用Modernizr检查deviceorientation支持

Modernizr.deviceorientation


它返回true,但是如果我尝试

window.addEventListener('deviceorientation', setControls, true);


永远不会调用该事件(仅在firefox上)。

我该如何解决这个问题?

最佳答案

显然,在台式机上,Firefox不会触发该事件。

09-19 07:03