码迷,mamicode.com
首页 > Web开发 > 详细

html5重力感应

时间:2015-07-13 13:46:46      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

orientationchange判断屏幕翻转

window.orientation可以获取屏幕的方向

	var orientationTimmer = null;
	window.addEventListener(window[‘onorientationchange‘] ? ‘orientationchange‘ : ‘resize‘, function(){
       clearTimeout(orientationTimmer);

       orientationTimmer = setTimeout(function(){
       		if(window.orientation){
       			switch(window.orientation){
	       			case 90:
	       				alert(‘左旋‘)
	       				break;
	       			case -90:
	       				alert(‘右旋‘)
	       				break;
	       		}
       		}
       },200);
       
    }, false);

  

 

html5重力感应

标签:

原文地址:http://www.cnblogs.com/dtdxrk/p/4642491.html

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