function readDeviceOrientation() { if (Math.abs(window.orientation) === 90) { // Landscape alert(‘横屏‘); } else { // Portrait alert(‘竖屏‘); } } window.onorientationchange = readDeviceOrientation;
时间: 2025-01-14 03:32:40
function readDeviceOrientation() { if (Math.abs(window.orientation) === 90) { // Landscape alert(‘横屏‘); } else { // Portrait alert(‘竖屏‘); } } window.onorientationchange = readDeviceOrientation;