首页 > 编程 > JavaScript > 正文

使用javascript判断手机是处于横屏还是竖屏

2019-11-09 15:08:40
字体:
来源:转载
供稿:网友
原文链接:http://caibaojian.com/orientation.html

移动端的浏览器一般都支持window.orientation这个参数,通过这个参数可以判断出手机是处在横屏还是竖屏状态。从而根据实际需求而执行相应的程序。通过添加监听事件onorientationchange,进行执行就可以了。

//判断手机横竖屏状态:function hengshuping(){if(window.orientation==180||window.orientation==0){alert("竖屏状态!")}if(window.orientation==90||window.orientation==-90){alert("横屏状态!")}}window.addEventListener("onorientationchange" in window ? "orientationchange" : "resize", hengshuping, false);

via在ipad、iphone网页开发中,我们很可能需要判断是横屏或者竖屏。原文来自:http://caibaojian.com/orientation.html

下面介绍如何用 jQuery 判断iPad、iPhone、Android是横屏还是竖屏的方法

//code from http://caibaojian.com/orientation.htmlfunction orient() {if (window.orientation == 90 || window.orientation == -90) {//ipad、iphone竖屏;Andriod横屏$("body").attr("class", "landscape");orientation = 'landscape';return false;}else if (window.orientation == 0 || window.orientation == 180) {//ipad、iphone横屏;Andriod竖屏$("body").attr("class", "portrait");orientation = 'portrait';return false;}}//页面加载时调用$(function(){orient();});//用户变化屏幕方向时调用$(window).bind( 'orientationchange', function(e){orient();});

屏幕方向对应的window.orientation值:ipad: 90 或 -90 横屏ipad: 0 或180 竖屏Andriod:0 或180 横屏Andriod: 90 或 -90 竖屏


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表