`
雷神F1
  • 浏览: 8658 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

jquerymobile在phonegap上添加屏幕旋转事件

阅读更多
找半天phonegap的插件结果没啊,在jQuerymobile官网看见的有这个事件,额!!酷
<script>
   function doOnOrientationChange(){

     switch(window.orientation){

        case-90:
        case90:
             alert('landscape');break;

        default:
             alert('portrait');break;
     }
   }

  window.addEventListener('orientationchange', doOnOrientationChange);

  doOnOrientationChange();

</script>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics