将垂直滚动位置绑定到计​​数器

时间:2014-11-29 19:03:05

标签: javascript jquery css scrolltop

我猜这很容易,但我是jQuery的新手,所以我有点失落。

相对于用户垂直滚动位置动画上升数字的最佳方法是什么?我正在制作一个长度为百万像素的div,并且想要一个从0到100万的固定数字。我是否正确地说我必须使用.scrollTop()函数?

为先进的任何帮助干杯!

1 个答案:

答案 0 :(得分:0)

以下代码可帮助您入门。如果你将html标签的高度增加到100万像素,你将拥有一个具有所需范围的计数器。

源代码来自this page。我刚从中创建了jsFiddle

$(function() {
    // move the counter with page scroll
    // source from this page http://www.pixelbind.com/make-a-div-stick-when-you-scroll/
    var s = $("#counter");
    var pos = s.position();                   
    $(window).scroll(function() {
        var windowpos = $(window).scrollTop();
        s.html("Distance from top:" + pos.top + "<br />Scroll position: " + windowpos);
        
        if (windowpos >= pos.top) {
            s.addClass("stick");
        } else {
            s.removeClass("stick");
        }
    });
    
});
html {
    /*force to show vert. scrollbar*/
    overflow-y: scroll;
    height: 1000200px;
    background: url("http://placehold.it/1000x500");
}
div#counter {
    padding:20px;
    margin:20px 0;
    background:#AAA;
    width:190px;
}
.stick {
    position:fixed;
    top:0px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>Dummy text. just to show distance from top calculation.<br/><br/><br/><br/></p>
<div id="counter"></div>