用户向下滚动时自动展开

时间:2013-12-13 18:08:02

标签: javascript jquery css html

当用户在页面上向下滚动时,我想要一个添加大小为100px x 100px的方形div框的网站。灵感:http://ohlandmusic.com/

1 个答案:

答案 0 :(得分:0)

只需沿着这些行编码

$(window).scroll(function() {
    if($(window).scrollTop() == $(document).height() - $(window).height()) {
        $('body').append($('<div class="b100x100"/>'));
        //append more here
    }
}

此处理程序应放在页面初始化代码中。

要获得更好的方法,请查看此处:http://www.jquery4u.com/tutorials/jquery-infinite-scrolling-demos/

关于SO的类似问题也有很多不同的答案。