获取滚动位置的百分比
Get percentage of scroll position
问题:
要计算的数学公式是什么(不管
scrollHeight
的文档)滚动条的底部距离它的总底部(这将是页面的末尾)有多远。因此,例如,当滚动条位于顶部时,我会说滚动条底部与文档底部的距离为 0%,而当它完全滚动(垂直),它将是 100%.
我的目标:
我的目标是计算底部和特定位置之间有多少像素,比方说 3%,相对于视口,在底部上方。同样,文档高度应该没有任何意义。如果相对于视口,3% 就是 3%。
已知变量:
var P = 3 // in %
var totalHeight = document.documentElement.scrollHeight;
var viewportHeight = document.documentElement.clientHeight;
当您滚动到底部时,最终位置值等于文档的高度减去一个屏幕(视口)的高度。所以如果你计算:
scrollPositionRelative = scrollPosition / (documentHeight - viewportHeight);
值将按预期在 0-1 范围内。
这是最后给出的示例中使用的函数。
function getScrollPosition () {
var viewportHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0); // Viewport height (px)
var scrollPosition = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop; // Current scroll position (px)
var documentHeight = $(document).height(); // Document height (px)
var scrollPositionRelative = scrollPosition / (documentHeight - viewportHeight); // The document height is reduced by the height of the viewport so that we reach 100% at the bottom
return {
documentHeight: documentHeight,
relative: scrollPositionRelative,
absolute: scrollPositionRelative * documentHeight // Yields an "average" pixel position
};
}
查看实际效果:http://jsbin.com/tawana/1/
Returns 相对于滚动位置 0
到 100
之间的数字:
document.onscroll = function(){
var pos = getVerticalScrollPercentage(document.body)
document.body.innerHTML = "<span>" + Math.round(pos) + "%<span>"
}
function getVerticalScrollPercentage( elm ){
var p = elm.parentNode
return (elm.scrollTop || p.scrollTop) / (p.scrollHeight - p.clientHeight ) * 100
}
body{ height:2000px }
span{ position:fixed; font:5em Arial; color:salmon; }
● Difference between scrollHeight
& clientHeight
问题:
要计算的数学公式是什么(不管
scrollHeight
的文档)滚动条的底部距离它的总底部(这将是页面的末尾)有多远。因此,例如,当滚动条位于顶部时,我会说滚动条底部与文档底部的距离为 0%,而当它完全滚动(垂直),它将是 100%.
我的目标:
我的目标是计算底部和特定位置之间有多少像素,比方说 3%,相对于视口,在底部上方。同样,文档高度应该没有任何意义。如果相对于视口,3% 就是 3%。
已知变量:
var P = 3 // in %
var totalHeight = document.documentElement.scrollHeight;
var viewportHeight = document.documentElement.clientHeight;
当您滚动到底部时,最终位置值等于文档的高度减去一个屏幕(视口)的高度。所以如果你计算:
scrollPositionRelative = scrollPosition / (documentHeight - viewportHeight);
值将按预期在 0-1 范围内。
这是最后给出的示例中使用的函数。
function getScrollPosition () {
var viewportHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0); // Viewport height (px)
var scrollPosition = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop; // Current scroll position (px)
var documentHeight = $(document).height(); // Document height (px)
var scrollPositionRelative = scrollPosition / (documentHeight - viewportHeight); // The document height is reduced by the height of the viewport so that we reach 100% at the bottom
return {
documentHeight: documentHeight,
relative: scrollPositionRelative,
absolute: scrollPositionRelative * documentHeight // Yields an "average" pixel position
};
}
查看实际效果:http://jsbin.com/tawana/1/
Returns 相对于滚动位置 0
到 100
之间的数字:
document.onscroll = function(){
var pos = getVerticalScrollPercentage(document.body)
document.body.innerHTML = "<span>" + Math.round(pos) + "%<span>"
}
function getVerticalScrollPercentage( elm ){
var p = elm.parentNode
return (elm.scrollTop || p.scrollTop) / (p.scrollHeight - p.clientHeight ) * 100
}
body{ height:2000px }
span{ position:fixed; font:5em Arial; color:salmon; }
● Difference between scrollHeight
& clientHeight