function readDeviceOrientation() { if (Math.abs(window.orientation) === 90) { // Landscape alert(‘横屏‘); } else { // Portrait alert(‘竖屏‘); } } window.onorientationchange = readDeviceOrientation;
手机屏幕旋转判断
原文:http://www.cnblogs.com/enone/p/4837112.html