使用scrollTop()时如何延长滚动?

时间:2015-10-02 23:18:33

标签: html css scrolltop

我目前在website中使用了scrollTop()方法。它在我的屏幕上工作正常但我意识到当主页在更大的屏幕上时,滚动条不会向下滚动。有没有办法来解决这个问题?

1 个答案:

答案 0 :(得分:0)

enter code here无需编辑滚动功能,只需确保身高。它至少应为50px>你的窗户高度。在你的$(文件).ready里面加上这个:

$("body").css("height", window.outerHeight + 50 + "px")

IE:

$(document).ready(function(){
        $('[data-toggle="tooltip"]').tooltip();
        $("body").css("height", window.outerHeight + 50 + "px")
});