javascript檢測(cè)移動(dòng)設(shè)備橫豎屏
來源:易賢網(wǎng) 閱讀:723 次 日期:2016-06-25 13:43:54
溫馨提示:易賢網(wǎng)小編為您整理了“javascript檢測(cè)移動(dòng)設(shè)備橫豎屏”,方便廣大網(wǎng)友查閱!

移動(dòng)端的開發(fā)過程中,免不了要判斷橫豎屏,然后在執(zhí)行其他操作,比如分別加載不同樣式,橫屏顯示某些內(nèi)容,豎屏顯示其他內(nèi)容等等。

如何判斷

移動(dòng)設(shè)備提供了兩個(gè)對(duì)象,一個(gè)屬性,一個(gè)事件:

(1)window.orientation   屬于window對(duì)象上一個(gè)屬性;共有三個(gè)值 :0為豎屏模式(portrait),90為向左反轉(zhuǎn)變?yōu)闄M屏模式(landscape),-90為向右反轉(zhuǎn)變?yōu)闄M屏模式(landscape),最后180就是設(shè)備上下互換還是豎屏模式。

(2)orientationchange     是一個(gè)event,在設(shè)備旋轉(zhuǎn)時(shí),會(huì)觸發(fā)此事件,如同PC上使用的resize事件。

這兩個(gè)搭配起來使用,很容易就能獲得設(shè)備的橫豎屏狀態(tài),代碼如下:

(function(){

 var init = function(){

  var updateOrientation = function(){

   var orientation = window.orientation;

   switch(orientation){

    case 90:

    case -90:

     orientation = 'landscape';

     break;

    default:

     orientation = 'portrait';

     break;

   }

   //do something

   //比如在html標(biāo)簽加一個(gè)狀態(tài)

   //然后根據(jù)不同狀態(tài),顯示不同大小

   document.body.parentNode.setAttribute('class',orientation);

  };

  window.addEventListener('orientationchange',updateOrientation,false);

  updateOrientation();

 };

 window.addEventListener('DOMContentLoaded',init,false);

})();

在css中就可以這樣寫:

/**豎屏 div邊框顯示藍(lán)色**/

.portrait body div{

 border:1px solid blue;

}

/**豎屏 div邊框顯示黃色**/

.landscape body div{

 border:1px solid yellow;

}

當(dāng)然還可以使用media queries的方式(推薦這種):

@media all and (orientation: portrait) {

 body div {

 border:1px solid blue;

 }

}

@media all and (orientation: landscape) {

 body div {

 border:1px solid yellow;

 }

}

兼容性

如果window.orientation或者orientationchange在設(shè)備中不存在的情況怎么處理呢?(一般一個(gè)不存在,另一個(gè)也不存在,反之)

在前期開發(fā)中,經(jīng)常會(huì)用Chrome的device model調(diào)式,但是這個(gè)屬性確實(shí)不存在,哪怎么獲得這個(gè)值呢?簡(jiǎn)單的方式就是依據(jù)寬和高的大小比較判斷,寬小于高為豎屏,寬大與高就是橫屏。

獲得結(jié)果的方式知道了,接下來就是怎么監(jiān)聽設(shè)備反轉(zhuǎn)事件了,既然orientationchange不可用,就使用最基本的resize事件或者使用定時(shí)器檢測(cè),還是看代碼:

(function(){

 var updateOrientation = function(){

  var orientation = (window.innerWidth > window.innerHeight) ? 'landscape' : 'portrait';

  document.body.parentNode.setAttribute('class',orientation);

 };

 var init = function(){

  updateOrientation();

  //每5秒檢查一次

  //window.setInterval(updateOrientation,5000);

  //監(jiān)聽resize事件

  window.addEventListener('resize',updateOrientation,false);

 };

 window.addEventListener('DOMContentLoaded',init,false);

})();

最后,把以上兩種方式合起來,就是一個(gè)完整的檢測(cè)解決方案

(function(){

 var supportOrientation = (typeof window.orientation === 'number' &&

   typeof window.onorientationchange === 'object');

 var init = function(){

  var htmlNode = document.body.parentNode,

   orientation;

  var updateOrientation = function(){

   if(supportOrientation){

    orientation = window.orientation;

    switch(orientation){

     case 90:

     case -90:

      orientation = 'landscape';

      break;

     default:

      orientation = 'portrait';

      break;

    }

   }else{

    orientation = (window.innerWidth > window.innerHeight) ? 'landscape' : 'portrait';

   }

   htmlNode.setAttribute('class',orientation);

  };

  if(supportOrientation){

   window.addEventListener('orientationchange',updateOrientation,false);

  }else{

   //監(jiān)聽resize事件

   window.addEventListener('resize',updateOrientation,false);

  }

  updateOrientation();

 };

 window.addEventListener('DOMContentLoaded',init,false);

})();

總結(jié):

通過orientationchange事件來監(jiān)聽設(shè)備是否旋轉(zhuǎn),配合window.orientation屬性判斷當(dāng)前是橫屏還是豎屏,以便執(zhí)行不同的操作。

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:javascript檢測(cè)移動(dòng)設(shè)備橫豎屏
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)