Firefox移动版(android)和方向更改

Alo*_*lon 2 firefox mobile orientation-changes android-orientation

该事件在Android的firefox mobile中不起作用。

到底如何检测方向变化?

Cor*_*ook 5

Firefox for Android不支持directionchange事件,但是您可以通过使用媒体查询侦听器来获得相同的结果。

var mqOrientation = window.matchMedia("(orientation: portrait)");

// The Listener will fire whenever this either matches or ceases to match
mqOrientation.addListener(function() { self.handleViewportChange(); });
Run Code Online (Sandbox Code Playgroud)