挂钩浏览器旋转
我想在手机旋转时执行一些 JavaScript
代码。我正在使用jQuery
。是否有可以与移动浏览器一起使用的自定义挂钩?
我能想到的一种方法是挂钩视口大小的变化,并检查高/宽比是否已更改。有没有我可以使用的 API 方法?
I'd like to execute some JavaScript
code when the mobile phone is rotated. I'm using jQuery
. Is there a custom hook I can use with mobile browsers?
One way I can think of is hooking into the change of the viewport size, and checking if the height/width ratio has changed. Is there an API method that I could use instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该是附加在 上的“onorientationchange”事件标签。
查看 window.orientation 属性,您还应该获得以度为单位的角度。
it should be "onorientationchange" event attached on <body> tag.
Looking at window.orientation property you should also get the angle in degrees.