我正在尝试使用相对于元素滚动百分比的0% - 100%设置div。
现在我已经设置了一些变量,但是我在尝试计算一个百分比的高度时遇到了麻烦。
我们可以非常轻松地设置起始宽度并且也可以轻松地检测滚动,因为我们可以获得将触发动画的元素的高度,我只是无法将其作为百分比得到。
如果我能弄清楚如何返回滚动的conheight的百分比,那么这应该很容易。
$(window).scroll(function() {
// calculate the percentage the user has scrolled down the page
var scrollPercent = ($(window).scrollTop() / $(document).height()) * 100;
$('.bar-long').css('width', scrollPercent +"%" );
});
这是一个jsfiddle,http://jsfiddle.net/SnJXQ/
这是基于body元素的滚动百分比来设置长条形动画。
动画从0% - 100%(嗯,它不是真的,但我无法弄清楚为什么)。
我想要做的是获取.post div的滚动百分比,然后相对于那个动画条长。 即。滚动10%.post,.bar-long为10%宽度,滚动70%.post,.bar-long为70%宽度。
答案 0 :(得分:19)
您的问题与How to get horizontal scrolling percentage of an HTML element in JavaScript?相同,但是垂直。
然后,要获得垂直滚动的百分比,请使用
/* JS */ var scrollPercentage = 100 * containeR.scrollTop / (containeR.scrollHeight-containeR.clientHeight);
/*jQuery*/ var scrollPercent = 100 * $(containeR).scrollTop() / ($(containeD).height() - $(containeR).height());
在您的情况下,containeR = window; containeD = document
:
var scrollPercent = 100 * $(window).scrollTop() / ($(document).height() - $(window).height());
答案 1 :(得分:6)
好的,我看到你想要实现的目标......实际上我做了一些非常相似的事情。我在那里发现的大多数解决方案也仅适用于具有窗口或文档属性的整页示例。相反,我需要在特定的div中使用它,在我的情况下实际上用于更新另一个div的水平位置。
首先,您希望滚动事件附加到您的$('。post')
接下来,$('。content')的高度将等于您的实际滚动高度
最后,应用你的百分比公式:(Y /(scrollHeight - postHeight))* 100 = scrollPercent
因此,您的代码不应使用文档或窗口属性,而应如下所示:
$('.post').scroll(function() {
var currY = $(this).scrollTop();
var postHeight = $(this).height();
var scrollHeight = $('.content').height();
var scrollPercent = (currY / (scrollHeight - postHeight)) * 100;
});
你可以在这里找到小提琴:JS Fiddle For Div Scroll Percentage
我实施此项目的当前项目位于:Vertical Scroll Drives Horizontal Position
我希望这能解决你的问题:)
答案 2 :(得分:2)
我们假设您要跟踪页面中某些IFrame中某些文档的滚动。
object.addEventListener("scroll", documentEventListener, false);
然后您的事件监听器应如下所示:
function documentEventListener(){
var currentDocument = this;
var docsWindow = $(currentDocument.defaultView); // This is the window holding the document
var docsWindowHeight = docsWindow.height(); // The viewport of the wrapper window
var scrollTop = $(currentDocument).scrollTop(); // How much we scrolled already, in the viewport
var docHeight = $(currentDocument).height(); // This is the full document height.
var howMuchMoreWeCanScrollDown = docHeight - (docsWindowHeight + scrollTop);
var percentViewed = 100.0 * (1 - howMuchMoreWeCanScrollDown / docHeight);
console.log("More to scroll: "+howMuchMoreWeCanScrollDown+"pixels. Percent Viewed: "+percentViewed+"%");
}