HTML5中判断横屏竖屏

01.<metaname="viewport"content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>

复制代码

针对上述viewport标签有如下说明

1)、content中的width指的是虚拟窗口的宽度。

2)、user-scalable=no就一定可以保证页面不可以缩放吗?NO,有些浏览器不吃这一套,还有一招就是minimum-scale=1.0,maximum-scale=1.0最大与最小缩放比例都设为1.0就可以了。

3)、initial-scale=1.0初始缩放比例受user-scalable控制吗?不一定,有些浏览器会将user-scalable理解为用户手动缩放,如果user-scalable=no,initial-scale将无法生效。

4)、手机页面可以触摸移动,但是如果有需要禁止此操作,就是页面宽度等于屏幕宽度是页面正好适应屏幕才可以保证页面不能移动。

5)、如果页面是经过缩小适应屏幕宽度的,会出现一个问题,当文本框被激活(获取焦点)时,页面会放大至原来尺寸。

一:CSS判断横屏竖屏

写在同一个CSS中

1

2

3

4

5

6

@mediascreenand(orientation:portrait){

/*竖屏css*/

}

@mediascreenand(orientation:landscape){

/*横屏css*/

}

分开写在2个CSS中

竖屏

1

<linkrel="stylesheet"media="alland(orientation:portrait)"href="portrait.css">

横屏

1

<linkrel="stylesheet"media="alland(orientation:landscape)"href="landscape.css">

一:JS判断横屏竖屏

01

02

03

04

05

06

07

08

09

10

//判断手机横竖屏状态:

window.addEventListener("onorientationchange"inwindow?"orientationchange":"resize",function(){

if(window.orientation===180||window.orientation===0){

alert('竖屏状态!');

}

if(window.orientation===90||window.orientation===-90){

alert('横屏状态!');

}

},false);

//移动端的浏览器一般都支持window.orientation这个参数,通过这个参数可以判断出手机是处在横屏还是竖屏状态。

HTML5中判断横屏竖屏

http://www.diyxue.com/thread-655-1-1.html

(出处:自定义学习网)

相关推荐