码迷,mamicode.com
首页 > 其他好文 > 详细

禁止横竖屏切换、强制横竖屏:

时间:2016-10-10 18:58:55      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

js判断屏幕横竖屏:
function orient() {
        //alert(‘gete‘);
        if (window.orientation == 0 || window.orientation == 180) {
            $("body").attr("class", "portrait");
            orientation = ‘portrait‘;
            return false;
        }
        else if (window.orientation == 90 || window.orientation == -90) {
            $("body").attr("class", "landscape");
            orientation = ‘landscape‘;
   
            return false;
        }
    }
   
   
    $(function(){
        orient();
    });
   
   
    $(window).bind( ‘orientationchange‘, function(e){
        orient();
    });
    ipad: 90 或 -90 横屏

    ipad: 0 或180 竖屏
   
   Andriod:0 或180 横屏
   
  Andriod: 90 或 -90 竖屏

iphone 、ipad禁止横竖屏切换、强制横竖屏:

禁止横竖屏切换、强制横竖屏:

标签:

原文地址:http://www.cnblogs.com/snowMark/p/5946249.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!