获取“视口”的位置在移动游猎中?
有没有办法确定移动Safari中“视口”在网页上的位置?比如手机当前在页面上看到的 x、y、w、h 像素位置?
Is there a way to determine the position of the "viewport" in mobile safari on a web page? Like x, y, w, h pixel positions of what the phone is currently seeing on the page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 javascript(在 Mobile Safari 上)中,您可以使用 window.pageXOffset 和 window.pageYOffset 获取 x 和 y 偏移量,使用 window.innerWidth 和 window.innerHeight 获取 w 和 h。
In javascript (on Mobile Safari) you can use window.pageXOffset and window.pageYOffset to get the x and y offsets, window.innerWidth and window.innerHeight to get w and h.