使用 scrollTop() 时如何延长滚动?
How to lengthen scroll when using scrollTop()?
我目前在 website 中使用 scrollTop() 方法。它在我的屏幕上运行良好,但我意识到当主页在更大的屏幕上时,滚动条不会向下滚动。有没有办法来解决这个问题?
enter code here
无需编辑滚动功能,只需确保身高即可。它应该至少 50px > 你的 window 高度。在你的 $(document).ready 里面添加:
$("body").css("height", window.outerHeight + 50 + "px")
IE:
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
$("body").css("height", window.outerHeight + 50 + "px")
});
我目前在 website 中使用 scrollTop() 方法。它在我的屏幕上运行良好,但我意识到当主页在更大的屏幕上时,滚动条不会向下滚动。有没有办法来解决这个问题?
enter code here
无需编辑滚动功能,只需确保身高即可。它应该至少 50px > 你的 window 高度。在你的 $(document).ready 里面添加:
$("body").css("height", window.outerHeight + 50 + "px")
IE:
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
$("body").css("height", window.outerHeight + 50 + "px")
});