美文网首页
原生JS如何监听移动设备屏幕横竖屏的旋转

原生JS如何监听移动设备屏幕横竖屏的旋转

作者: 1263536889 | 来源:发表于2021-02-19 10:00 被阅读0次

    window.orientation 对象在手机上才可生效。

    <script type="text/javascript">
        var evt = "onorientationchange" in window ? "orientationchange" : "resize";
        window.addEventListener(evt,resize,false);
            function resize(fals) {
                if(window.orientation == 0 || window.orientation == 180) {
                        alert("竖屏");
                    }else {
                        alert("横屏");
                }
            }
        resize(true);
    </script>
    

    相关文章

      网友评论

          本文标题:原生JS如何监听移动设备屏幕横竖屏的旋转

          本文链接:https://www.haomeiwen.com/subject/adhoghtx.html