根据 window.orientation 判断移动设备处于横屏(landscape)/竖屏(portrait)

<!DOCTYPE html>
<html lang="en">
<head>
    <meta name="renderer" content="webkit">
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no">
    <!-- uc强制竖屏 -->
    <meta name="screen-orientation" content="portrait">
    <!-- QQ强制竖屏 -->
    <meta name="x5-orientation" content="portrait">
    <title>Document</title>
</head>

<body>
    <p>测试横竖屏</p>
    <script>
        if(window.orientation !== undefined) {
            function checkOrient () {
                if (window.orientation == 0 || window.orientation == 180) {
                    var screenOrientation = 'portrait';
                } else if (window.orientation == 90 || window.orientation == -90) {
                    var screenOrientation = 'landscape';
                }
                return screenOrientation;
            }
            function landscapeAction () {
                if(checkOrient() === 'landscape') {
                    alert('为了更好的体验,请选择竖屏浏览!');
                }
            }
            // 添加事件监听
            addEventListener('DOMContentLoaded', function () {
                landscapeAction();
                window.onorientationchange = landscapeAction;
            });
        }
        
    </script>
</body>

</html>

 

posted on 2017-09-14 09:46  百里登风  阅读(188)  评论(0编辑  收藏  举报