html屏幕旋转事件监听

近期做微信服务号开发,在做图片展示的时候需要横竖屏的检测实现图片大小不同的展示。

添加屏幕旋转事件侦听,可随时发现屏幕旋转状态(左旋、右旋还是没旋)。

摘自:http://bbs.phonegap100.com/thread-28-1-1.html

//js 判断屏幕是否旋转

4. 屏幕旋转事件:onorientationchange

添加屏幕旋转事件侦听,可随时发现屏幕旋转状态(左旋、右旋还是没旋)。例子:

// 判断屏幕是否旋转

function orientationChange() {

    switch(window.orientation) {

      case 0: 

            alert("肖像模式 0,screen-width: " + screen.width + "; screen-height:" + screen.height);

            break;

      case -90: 

            alert("左旋 -90,screen-width: " + screen.width + "; screen-height:" + screen.height);

            break;

      case 90:   

            alert("右旋 90,screen-width: " + screen.width + "; screen-height:" + screen.height);

            break;

      case 180:   

          alert("风景模式 180,screen-width: " + screen.width + "; screen-height:" + screen.height);

          break;

    };<br>};

// 添加事件监听

addEventListener(‘load‘, function(){

    orientationChange();

    window.onorientationchange = orientationChange;

});

我们在开发Mobile Web应用时,一个最佳实践就是采用流式布局,保证最大可能地利用有限的屏幕空间。

window.orientation属性与onorientationchange事件    

window.orientation :这个属性给出了当前设备的屏幕方向,0表示竖屏,正负90表示横屏(向左与向右)模式

onorientationchange : 在每次屏幕方向在横竖屏间切换后,就会触发这个window事件,用法与传统的事件类似

1、使用onorientationchange事件的回调函数,来动态地为body标签添加一个叫orient的属性,同时以body[orient=landspace]或body[orient=portrait]的方式在css中定义对应的样式,这样就可以实现在不同的屏幕模式下显示不同的样式。如下代码示例:

<!Doctype html>
    <html>
        <head>
            <meta charset="utf-8">
            <meta id="viewport" name="viewport" content="width=device-width,initial-scale=1.0;">
            <title>横竖屏切换检测</title>
            <style type="text/css">
                body[orient=landscape]{
                    background-color: #ff0000;
                }  

                body[orient=portrait]{
                    background-color: #00ffff;
                }
            </style>
        </head>
        <body orient="landspace">
            <div>
                内容
            </div>
            <script type="text/javascript">
                (function(){
                    if(window.orient==0){
                        document.body.setAttribute("orient","portrait");
                    }else{
                        document.body.setAttribute("orient","landscape");
                    }
                })();
                window.onorientationchange=function(){
                    var body=document.body;
                    var viewport=document.getElementById("viewport");
                    if(body.getAttribute("orient")=="landscape"){
                        body.setAttribute("orient","portrait");
                    }else{
                        body.setAttribute("orient","landscape");
                    }
                };
            </script>
        </body>
    </html>  

2、类似的思路,不通过CSS的属性选择器来实现,如下代码的实现方案:

<!Doctype html>
    <html>
        <head>
            <meta charset="utf-8">
            <meta id="viewport" name="viewport" content="width=device-width,initial-scale=1.0;">
            <title>横竖屏切换检测</title>
            <style type="text/css">
                .landscape body {
                    background-color: #ff0000;
                }  

                .portrait body {
                    background-color: #00ffff;
                }
            </style>
        </head>
        <body orient="landspace">
            <div>
                内容
            </div>
            <script type="text/javascript">
                (function(){
                    var init=function(){
                        var updateOrientation=function(){
                            var orientation=window.orientation;
                            switch(orientation){
                                case 90:
                                case -90:
                                    orientation="landscape";
                                    break;
                                default:
                                    orientation="portrait";
                                    break;
                            }
                            document.body.parentNode.setAttribute("class",orientation);
                        };  

                        window.addEventListener("orientationchange",updateOrientation,false);
                        updateOrientation();
                    };
                    window.addEventListener("DOMContentLoaded",init,false);
                })();
            </script>
        </body>
    </html>  

使用media query方式

这是一种更为方便的方式,使用纯CSS就实现了对应的功能,如下代码演示:

<!Doctype html>
    <html>
        <head>
            <meta charset="utf-8">
            <meta id="viewport" name="viewport" content="width=device-width,initial-scale=1.0;">
            <title>横竖屏切换检测</title>
            <style type="text/css">
                @media all and (orientation : landscape) {
                    body {
                        background-color: #ff0000;
                    }
                }  

                @media all and (orientation : portrait){
                    body {
                        background-color: #00ff00;
                    }
                }
            </style>
        </head>
        <body>
            <div>
                内容
            </div>
        </body>
    </html>  

低版本浏览器的平稳降级

如果目标移动浏览器不支持media query,同时window.orientation也不存在,则我们需要采用另外一种方式来实现————使用定时器“伪实时”地对比当前窗口的高(window.innerHeight)与宽(window.innerWidth)之比,从而判定当前的横竖屏状态。如下代码所示:

<!Doctype html>
    <html>
        <head>
            <meta charset="utf-8">
            <meta id="viewport" name="viewport" content="width=device-width,initial-scale=1.0;">
            <title>按键</title>
            <style type="text/css">
                .landscape body {
                    background-color: #ff0000;
                }  

                .portrait body {
                    background-color: #00ffff;
                }
            </style>
            <script type="text/javascript">
                (function(){
                    var updateOrientation=function(){
                        var orientation=(window.innerWidth > window.innerHeight)? "landscape" : "portrait";
                        document.body.parentNode.setAttribute("class",orientation);
                    };  

                    var init=function(){
                        updateOrientation();
                        window.setInterval(updateOrientation,5000);
                    };
                    window.addEventListener("DOMContentLoaded",init,false);
                })();
            </script>
        </head>
        <body>
            <div>
                内容
            </div>
        </body>
    </html>  

统一解决方案

将以上的两种解决方案整合在一起,就可以实现一个跨浏览器的解决方案,如下代码:

    <!Doctype html>
    <html>
        <head>
            <meta charset="utf-8">
            <meta id="viewport" name="viewport" content="width=device-width,initial-scale=1.0;">
            <title>横竖屏切换检测</title>
            <style type="text/css">
                .landscape body {
                    background-color: #ff0000;
                }  

                .portrait body {
                    background-color: #00ffff;
                }
            </style>
            <script type="text/javascript">
                (function(){
                    var supportOrientation=(typeof window.orientation == "number" && typeof window.onorientationchange == "object");  

                    var updateOrientation=function(){
                        if(supportOrientation){
                            updateOrientation=function(){
                                var orientation=window.orientation;
                                switch(orientation){
                                    case 90:
                                    case -90:
                                        orientation="landscape";
                                        break;
                                    default:
                                        orientation="portrait";
                                }
                                document.body.parentNode.setAttribute("class",orientation);
                            };
                        }else{
                            updateOrientation=function(){
                                var orientation=(window.innerWidth > window.innerHeight)? "landscape":"portrait";
                                document.body.parentNode.setAttribute("class",orientation);
                            };
                        }
                        updateOrientation();
                    };  

                    var init=function(){
                        updateOrientation();
                        if(supportOrientation){
                            window.addEventListener("orientationchange",updateOrientation,false);
                        }else{
                            window.setInterval(updateOrientation,5000);
                        }
                    };
                    window.addEventListener("DOMContentLoaded",init,false);
                })();
            </script>
        </head>
        <body>
            <div>
                内容
            </div>
        </body>
    </html>  

html屏幕旋转事件监听

时间: 2024-10-08 01:51:52

html屏幕旋转事件监听的相关文章

屏幕触摸事件监听,判断上下左右的操作行为,判断方法缩小的操作行为

在手机屏幕上能够实现的人机交互行为,大致包括点击按钮,拉动滑动块,物体缩放,上下左右拉动等. 手机屏幕触摸事件的监听方法: 1.首先要设置一块布局区域,frameLayout/LinearLayout等都可以,并为布局设置id: 2.在Activity中声明相应的布局类型,并通过findViewById()方法找到该布局,然后为该布局区域设置setOnTouchListener()方法,就能监听在相应屏幕触摸操作 实现屏幕触摸事件监听的代码: private LinearLayout Land;

HTML5-javascript屏幕旋转事件:onorientationchange

/* 屏幕旋转事件:onorientationchange 添加屏幕旋转事件侦听,可随时发现屏幕旋转状态(左旋.右旋还是没旋) */ // 判断屏幕是否旋转 function orientationChange() { switch(window.orientation) { case 0: alert("肖像模式 0,screen-width: " + screen.width + "; screen-height:" + screen.height); brea

1016-03-父子控制器-----屏幕旋转事件的传递

1. ARC里面默认情况下所有指针都是强指针. 2. 在演示 设置两个控制器的关系为 父子控制器的关系的时候,将一个控制器B 的view加到 A控制器的view上去的时候,如果A.B不为父子控制器的关系时,旋转屏幕 的时候 B控制器是不能监听到屏幕的旋转的.只有A控制器可以监听到屏幕旋转. 3. 屏幕旋转事件是由窗口发出的.窗口会将事件传给它的根控制器. /** 监听旋转 */ - (void)willRotateToInterfaceOrientation:(UIInterfaceOrient

移动端touch触屏滑动事件、滑动触屏事件监听!

移动端touch触屏滑动事件.滑动触屏事件监听! 一.触摸事件 ontouchstart.ontouchmove.ontouchend.ontouchcancel 目前移动端浏览器均支持这4个触摸事件,包括IE.由于触屏也支持MouseEvent,因此他们的顺序是需要注意的:touchstart → mouseover → mousemove → mousedown → mouseup → click1 Apple在iOS 2.0中引入了触摸事件API,Android正迎头赶上这一事实标准,缩小

Android-ListView两种适配器以及事件监听

Android-ListView两种适配器 ListView在安卓App中非常常见,几乎每一个App都会有涉及,比如QQ消息列表,或者是 通讯录还有就是酷我音乐的歌曲列表都是ListView.继承ListView.所以非常重要. 这就是ListView ArrayAdapter 数据源是数据或者集合,比较简单 布局文件 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:androi

View实现事件监听DEMO(文本跟随触屏事件)

View 是一个显示的视图,内置的画布通过重写Ondraw(Canvas canvas);方法获得,同时提供图形绘制函数.触屏事件.按键事件等. 现在利用一个简单的demo演示一下几个重要的常用到的方法: import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.view.K

RN性能优化及事件监听

自从React Native出世,虽然官方一直尽可能的优化其性能,为了能让其媲美原生App的速度,但是现实感觉有点不尽人意.接下来介绍下实践中遇到的一些性能问题以及优化方案. 一.StackNavigator页面切换动画优化 场景:在navigation还没出来时,导航路由使用NavigatorIOS来实现,页面切换是很流畅的,但是用了StackNavigator navigation发现页面切换会使JS线程出现严重的掉帧(卡顿现象): 原因:NavigatorIOS的切换动画是跑在UI主线程上

JavaScript-4.5 事件大全,事件监听---ShinePans

绑定事件 <input type="bubtton" onclick="javascript:alert('I am clicked');"> 处理事件 <script language="JavaScript" for="对象" event="事件"> ... (事件处理代码) ... </script> 鼠标事件举例 <script language="

[基础控件]---状态切换控件CompoundButton及其子类CheckBox、RadioButton、ToggleButton、switch事件监听与场景使用

一.事件监听 对于普通的Button,对其进行事件监听Google官方给出了常见的三种监听方式:1.对每一个button设置事件监听器button.setOnClickListener(View.OnclickListener  listener);此种方法当button按钮较多时代码显得多.乱.不够简洁明了. 2.在Activity中实现接口View.OnclickListener,然后重写void onClick(View v)方法,在方法中通过switch(v.getId())予以区分不同