通过jquery手机在手机间隙中实施定向变更事件

前端之家收集整理的这篇文章主要介绍了通过jquery手机在手机间隙中实施定向变更事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有人可以通过jquery手机在手机间隙中让我知道正确的方向更改事件代码吗?在哪里和如何实现这个orientationChange功能

解决方法

$(window).bind('orientationchange',_orientationHandler);

那么在_orientationHandler函数中,有如下的东西:

if(event.orientation){
      if(event.orientation == 'portrait'){
                  //do something
      }
      else if(event.orientation == 'landscape') {
                    //do something
      }
}
原文链接:https://www.f2er.com/jquery/183572.html

猜你在找的jQuery相关文章