PHP群:95885625 Hbuilder+MUI群:81989597 站长QQ:634381967
    您现在的位置: 首页 > 开发编程 > Jquery教程 > 正文

    jQuery判断iPhone、Android、iPad横屏还是竖屏的方法

    作者:admin来源:网络浏览:时间:2020-09-30 00:07:50我要评论
    导读:以下是通过window.orientation实现:function orient() {if (window.orientation == 90 || window.orientation == -90) {//ipad...
    以下是通过window.orientation实现:
    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 竖屏
     
    转载请注明(B5教程网)原文链接:https://b5.mxunkeji.com/content-47-2948-1.html
    相关热词搜索: