zoukankan      html  css  js  c++  java
  • JQuery 判断IPad、IPhone、Android是横屏还是竖屏(Window.Orientation实现)

    在ipad、iphone网页开发中,我们很可能需要判断是横屏或者竖屏。下面就来介绍如何用 jQuery 判断iPad、iPhone、Android是横屏还是竖屏的方法。

    代码如下:

    function 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 竖屏

    有次我针对PC版限制了JS缩放的最小尺寸,PC版最小到980像素宽。

    但是ipad竖向是属于768以上,要判断要么大于920,要么它是移动设备,于是我查到这个属性,如果该值为真:

    if(_maxWidth>920||window.orientation == 90 || window.orientation == -90||window.orientation == 0 || window.orientation == 180){
        $("#banner").css({"width": _maxWidth+"px","height":_maxHeight+"px"});    
    }

    效果是正确的。在PC版上屏蔽了图片920像素一下的缩放。ipad正常。

  • 相关阅读:
    C# 参数按照ASCII码从小到大排序(字典序)
    .net平台下C#socket通信 (下)
    net平台下C#socket通信(上)
    使用C#创建Windows服务
    C# EF 批量操作
    消息队列及常见消息队列介绍
    消息队列的4种应用场景
    npm install 安装到指定的目录
    express学习1
    nodejs url
  • 原文地址:https://www.cnblogs.com/haimingpro/p/3578256.html
Copyright © 2011-2022 走看看