三种检测iPhone/iPad设备方向的方法

使用meta tag "viewport"

viewport标签包含如下属性:

三种检测iPhone/iPad设备方向的方法

 

为了能自动探测并适配到屏幕宽度,应该使用device-with而不是设定一个固定值,另外为了避免用户缩放导致界面超出屏幕,需要设置maximum-scale,

复制代码 代码如下:


<meta content="width=device-width, maximum-scale=1.0" />


使用javascript脚本

下面的脚本通过检测屏幕宽度来检测方向并调整方向:

复制代码 代码如下:


<script type="text/javascript">
var updateLayout = function() {
if (window.innerWidth != currentWidth) {
currentWidth = window.innerWidth;
var orient = (currentWidth == 320) ? "profile" : "landscape";
document.body.setAttribute("orient", orient);
window.scrollTo(0, 1);
}
};

iPhone.DomLoad(updateLayout);
setInterval(updateLayout, 400);
</script>


上述脚本可放在head部分

使用CSS

使用CSS的media query:

复制代码 代码如下:


<link media="all and (orientation:portrait)" href="https://www.jb51.net/portrait.css">
<link media="all and (orientation:landscape)" href="https://www.jb51.net/landscape.css">

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdyyzw.html