我猜这真的很容易,但是我是jQuery的新手,所以我有点迷路了。

相对于用户垂直滚动位置,对数字进行动画处理的最佳方法是什么?我将div的长度设置为一百万像素,并希望使用从0到一百万的固定数字。我说对了,我必须使用.scrollTop()函数吗?

为高级帮助加油!

最佳答案

以下代码将帮助您入门。如果您将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>

关于javascript - 将垂直滚动位置绑定(bind)到计​​数器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27205883/

10-13 09:28