下面小編就為大家分享一篇基於捲軸位置判斷的簡單實例,具有很好的參考價值,希望對大家有幫助。一起跟著小編過來看看吧
實例如下圖:
//获取滚动条距离顶部位置 function getScrollTop() { var scrollTop = 0; if (document.documentElement && document.documentElement.scrollTop) { scrollTop = document.documentElement.scrollTop; } else if (document.body) { scrollTop = document.body.scrollTop; } return scrollTop; } //获取当前可视范围的高度 function getClientHeight() { var clientHeight = 0; if (document.body.clientHeight && document.documentElement.clientHeight) { clientHeight = Math.min(document.body.clientHeight, document.documentElement.clientHeight); } else { clientHeight = Math.max(document.body.clientHeight, document.documentElement.clientHeight); } return clientHeight; } //获取文档完整的高度 function getScrollHeight() { return Math.max(document.body.scrollHeight, document.documentElement.scrollHeight); } //判断滚动条是否达到底部 getScrollTop() + getClientHeight() == getScrollHeight()
上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
以上是如何利用捲軸位置判斷的詳細內容。更多資訊請關注PHP中文網其他相關文章!