• JS判断手机浏览器是横屏or竖屏


    用到手机上,不可避免,还需要知道 手机上现在是横屏还是竖屏

    看到文章: http://www.cnblogs.com/shixiumin/p/5753961.html

    //判断手机横竖屏状态:
    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);
    

      

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

    屏幕方向对应的window.orientation值:

    ipad: 90 或 -90 横屏

    ipad: 0 或180 竖屏

    Andriod:0 或180 横屏

    Andriod: 90 或 -90 竖屏

    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();
    });
    

      

    还没试过,先mark , 后面试下

  • 相关阅读:
    Web前端基础(1):HTML(一)
    python基础(35):协程
    python基础(34):线程(二)
    python基础(33):线程(一)
    python基础(32):进程(二)
    python基础(31):进程(一)
    python基础(30):黏包、socket的其他方法
    用keychain这个特点来保存设备唯一标识。
    判断iPhone的WiFi是否打开的两种方法 之是否连接上 WiFi
    NSStringCompareOptions
  • 原文地址:https://www.cnblogs.com/jshare/p/7467037.html
Copyright © 2020-2023  润新知