测量窗口偏移
有没有一种方法可以测量 jQuery 中窗口的偏移量,以便我可以比较“固定”元素和相对定位元素的位置?
我需要能够知道窗口滚动了多远,以便我可以使用该图来计算固定元素的高度(相对于视口顶部)和相对对象的高度(相对于顶部)之间的差异文件的内容)
Is there a way to measure the offset of the window in jQuery, in order than I might compare the positions of a 'fixed' element and a relatively positioned one?
I need to be able to tell how far the window is scrolled so I can use the figure to calculate the difference between the height of the fixed element (which is relative to the viewport top) and the relative object (which is relative to the top of the document)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
$(window).scrollTop()
和$(window).scrollLeft()
可用于查找滚动位置。$(window).scrollTop()
and$(window).scrollLeft()
can be used to find scroll positions.使用没有 jQuery 的纯 Javascript 应该是
window.pageXOffset
和window.pageYOffset
,它们返回滚动偏移的像素数。来源:https://developer.mozilla.org/en-US /docs/Web/API/Window/scrollY
Using plain Javascript without jQuery should be
window.pageXOffset
andwindow.pageYOffset
, which return the number of pixels offset by scrolling.Source: https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollY
文档.body.offsetWidth;
和
document.body.offsetHeight;
通过使用这些 JavaScript 函数,您可以获得浏览器窗口的实际宽度和高度
document.body.offsetWidth;
and
document.body.offsetHeight;
By using these javascript functions you can get actual width and height of the browser window