测量窗口偏移

发布于 2024-11-16 13:15:20 字数 136 浏览 1 评论 0原文

有没有一种方法可以测量 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

淡莣 2024-11-23 13:15:20

$(window).scrollTop()$(window).scrollLeft() 可用于查找滚动位置。

$(window).scrollTop() and $(window).scrollLeft() can be used to find scroll positions.

白况 2024-11-23 13:15:20

使用没有 jQuery 的纯 Javascript 应该是 window.pageXOffsetwindow.pageYOffset,它们返回滚动偏移的像素数。

来源:https://developer.mozilla.org/en-US /docs/Web/API/Window/scrollY

Using plain Javascript without jQuery should be window.pageXOffset and window.pageYOffset, which return the number of pixels offset by scrolling.

Source: https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollY

深巷少女 2024-11-23 13:15:20

文档.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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文