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

JS 判断ipad android 等移动设备横竖屏代码 源码--AangJava

时间:2015-05-11 16:12:54      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:横竖屏判断

废话不多说,直接进入正题!

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<title> JS 判断ipad android 等移动设备横竖屏代码 源码--AangJava</title>
<script type="text/javascript">
// Detect whether device supports orientationchange event, otherwise fall back to
// the resize event.
var supportsOrientationChange = "onorientationchange" in window,
    orientationEvent = supportsOrientationChange ? "orientationchange" : "resize";
// 监听事件
window.addEventListener(orientationEvent, function() {
    var ua = navigator.userAgent;
    var deviceType="";
    //判断设备类型 
    if (ua.indexOf("iPad") > 0) {
       deviceType = "isIpad";
    } else if (ua.indexOf("Android") > 0) {
       deviceType = "isAndroid";
    } else {
       alert("既不是ipad,也不是安卓!");
       return;
    }
     // 判断横竖屏 
     if ("isIpad" == deviceType) {
       if (Math.abs(window.orientation) == 90) {
           alert("我是ipad的横屏");
       } else {
           alert("我是ipad的竖屏");
       }
    } else if ("isAndroid" == deviceType ) {
       if (Math.abs(window.orientation) != 90) {
           alert("我是安卓的横屏");
       } else {
           alert("我是安卓的竖屏");
       }
    }
}, false);
</script>
</head>
<body>
    AangJava 测试横竖屏JS代码
</body>
</html>  

JS 判断ipad android 等移动设备横竖屏代码 源码--AangJava

标签:横竖屏判断

原文地址:http://blog.csdn.net/aangjava/article/details/45644175

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