检测屏幕横屏状态
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);
以上是关于检测屏幕横屏状态的主要内容,如果未能解决你的问题,请参考以下文章