enone
function readDeviceOrientation() {
                         
        if (Math.abs(window.orientation) === 90) {
            // Landscape
            alert(\'横屏\');
        } else {
            // Portrait
            alert(\'竖屏\');
        }
    }

    window.onorientationchange = readDeviceOrientation;

 

分类:

技术点:

相关文章: