HTML5中判斷橫屏豎屏的方法移動端
2016/12/30 9:41:24來源:互聯(lián)網(wǎng)
在移動端中我們經(jīng)常遇到橫屏豎屏的題目,那么我們應(yīng)該如何去判斷或者針對橫屏、豎屏來寫不同的代碼呢。
這里有兩種方法:
一:CSS判斷橫屏豎屏
寫在統(tǒng)一個CSS中
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- @media screen and (orientation: portrait) {
- /*豎屏 css*/
- }
- @media screen and (orientation: landscape) {
- /*橫屏 css*/
- }
分開寫在2個CSS中
豎屏
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- <link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css">
橫屏
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- <link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css">
二:JS判斷橫屏豎屏
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- //判斷手機橫豎屏狀況:
- window.addEventListener("onorientationchange" in window ? "orientationchange" : "resize", function() {
- if (window.orientation === 180 || window.orientation === 0) {
- alert('豎屏狀況!');
- }
- if (window.orientation === 90 || window.orientation === -90 ){
- alert('橫屏狀況!');
- }
- }, false);
//移動端的欣賞器一樣平常都支持window.orientation這個參數(shù),通過這個參數(shù)可以判斷出手機是處在橫屏照舊豎屏狀況。
屏幕方向?qū)?yīng)的window.orientation值:
ipad,iphone: 90 或 -90 橫屏
ipad,iphone: 0 或180 豎屏
Andriod:0 或180 橫屏
Andriod: 90 或 -90 豎屏
[教程作者:佚名]
免責(zé)聲明:本站文章系圖趣網(wǎng)整理發(fā)布,如需轉(zhuǎn)載,請注明出處,素材資料僅供個人學(xué)習(xí)與參考,請勿用于商業(yè)用途!
本文地址:http://m.likemindfilms.com/tutorial/wd3360.html
本文地址:http://m.likemindfilms.com/tutorial/wd3360.html
下一篇:Html5元素及基本語法詳解
這些是最新的
最熱門的教程