js如何設置網頁橫屏和豎屏切換


<!DOCTYPE html> 
<html>
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml;charset=UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>手機橫、豎屏事件</title> 
<script language="javascript" type="text/javascript">
//屏幕方向標識,0橫屏,其他值豎屏
var orientation=0;
//轉屏事件,內部功能可以自定義
function screenOrientationEvent(){
    if(orientation == 0)document.getElementById("change").value="豎";
    else document.getElementById("change").value="橫";
}
var innerWidthTmp = window.innerWidth;
//橫豎屏事件監聽方法
function screenOrientationListener(){
    try{
        var iw = window.innerWidth;     
        //屏幕方向改變處理
        if(iw != innerWidthTmp){
            if(iw>window.innerHeight)orientation = 90;
            else orientation = 0;
            //調用轉屏事件
            screenOrientationEvent();
            innerWidthTmp = iw;
        }
    } catch(e){alert(e);};
    //間隔固定事件檢查是否轉屏,默認500毫秒
    setTimeout("screenOrientationListener()",500);
}
//啟動橫豎屏事件監聽
screenOrientationListener();
</script>
</head> 
<body onload="screenOrientationEvent()"> 
<input id="change" type="text" value=""/>
</body>
</html>

原文地址

http://www.dewen.io/q/8694/js%E5%A6%82%E4%BD%95%E8%AE%BE%E7%BD%AE%E7%BD%91%E9%A1%B5%E6%A8%AA%E5%B1%8F%E5%92%8C%E7%AB%96%E5%B1%8F%E5%88%87%E6%8D%A2


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM