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

幻海tan 2014-11-18

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

     switch(window.orientation){

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

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

  window.addEventListener('orientationchange', doOnOrientationChange);

  doOnOrientationChange();

</script>

相关推荐

malonely / 0评论 2013-03-07