检测屏幕横屏状态

Posted BlueSky1024

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检测屏幕横屏状态相关的知识,希望对你有一定的参考价值。

window.addEventListener("onorientationchange" in window ? "orientationchange" : "resize", function() {
    if (window.orientation === 180 || window.orientation === 0) {
      document.getElementsByTagName("html")[0].style.fontSize=document.documentElement.offsetWidth*12/375+"px"
    }
    if (window.orientation === 90 || window.orientation === -90 ){
      document.getElementsByTagName("html")[0].style.fontSize=document.documentElement.offsetWidth*12/375+"px"
    }
}, false);

以上是关于检测屏幕横屏状态的主要内容,如果未能解决你的问题,请参考以下文章

GPHONE:android如何实现横屏

我想知道怎么让android一直保持横屏状态不要一打开应用后又切换到竖屏如果是关闭设置里面的自动旋转屏幕之

电脑怎么变横屏?

手机chrome全屏不横屏

Rk3288 7.1.1安卓源码设置屏幕竖屏或横屏

IQKeyboardManager 横屏后 Toolbar 显示异常