admin管理员组文章数量:1352158
I'm looking for a cross-browser method of detecting that a client web browser is scrolled all the way to the bottom (or top) of the screen.
Really, the top is fairly easy, as
scrY = window.pageYOffset || document.body.scrollTop || document.documentElement.scrollTop
is zero if you're at the top. The problem is that scrY seems to return the top of the scroll bar, and not the bottom, so instead of getting something equivalent to the height of the document (in pixels) I what is presumably the height of the document less the size of the scroll bar.
Is there an easy, cross-browser way to find out if the user has scrolled down to the bottom of the document/window? Most specifically, I understand general scroll bar manipulation (setting it, moving it, etc.) but how can I get the delta of the bottom of the scrollbar's position relative to the bottom of the window/document.
I'm looking for a cross-browser method of detecting that a client web browser is scrolled all the way to the bottom (or top) of the screen.
Really, the top is fairly easy, as
scrY = window.pageYOffset || document.body.scrollTop || document.documentElement.scrollTop
is zero if you're at the top. The problem is that scrY seems to return the top of the scroll bar, and not the bottom, so instead of getting something equivalent to the height of the document (in pixels) I what is presumably the height of the document less the size of the scroll bar.
Is there an easy, cross-browser way to find out if the user has scrolled down to the bottom of the document/window? Most specifically, I understand general scroll bar manipulation (setting it, moving it, etc.) but how can I get the delta of the bottom of the scrollbar's position relative to the bottom of the window/document.
Share Improve this question edited Sep 30, 2008 at 3:00 Erik asked Sep 30, 2008 at 2:28 ErikErik 1211 silver badge5 bronze badges2 Answers
Reset to default 5http://www.softplex./docs/get_window_size_and_scrollbar_position.html
http://www.sitepoint./article/preserve-page-scroll-position/
http://codepunk.hardwar.uk/ajs02.htm
In order to ensure that an element is visible, you can use the .scrollIntoView method
A sum up of what works in FF 3.5:
function isTop() {
return window.pageYOffset == 0;
}
function isBottom() {
return window.pageYOffset >= window.scrollMaxY;
}
版权声明:本文标题:javascript - How can I detect that the client is scrolled to the top or bottom of a webpage? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743897743a2558104.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论