DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML5教程 >> HTML5中判斷橫屏豎屏的方法(移動端)
HTML5中判斷橫屏豎屏的方法(移動端)
編輯:HTML5教程     

在移動端中我們經常碰到橫屏豎屏的問題,那麼我們應該如何去判斷或者針對橫屏、豎屏來寫不同的代碼呢。

這裡有兩種方法:

一:CSS判斷橫屏豎屏

寫在同一個CSS中

XML/HTML Code復制內容到剪貼板
  1. @media screen and (orientation: portrait) {   
  2.   /*豎屏 css*/   
  3. }    
  4. @media screen and (orientation: landscape) {   
  5.   /*橫屏 css*/   
  6. }  

分開寫在2個CSS中

豎屏

XML/HTML Code復制內容到剪貼板
  1. <link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css">   

橫屏

XML/HTML Code復制內容到剪貼板
  1. <link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css">   

二:JS判斷橫屏豎屏

XML/HTML Code復制內容到剪貼板
  1. //判斷手機橫豎屏狀態:   
  2. window.addEventListener("onorientationchange" in window ? "orientationchange" : "resize", function() {   
  3.         if (window.orientation === 180 || window.orientation === 0) {    
  4.             alert('豎屏狀態!');   
  5.         }    
  6.         if (window.orientation === 90 || window.orientation === -90 ){    
  7.             alert('橫屏狀態!');   
  8.         }     
  9.     }, false);   

//移動端的浏覽器一般都支持window.orientation這個參數,通過這個參數可以判斷出手機是處在橫屏還是豎屏狀態。

屏幕方向對應的window.orientation值:

ipad,iphone: 90 或 -90 橫屏
ipad,iphone: 0 或180 豎屏
Andriod:0 或180 橫屏
Andriod: 90 或 -90 豎屏

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved