我的代码可以像下面这样检测浏览器窗口底部,然后运行last_msg_funtion();
:
$(window).scroll(function(){
if ($(window).scrollTop() == $(document).height() - $(window).height()){
last_msg_funtion();
}
});
我的问题是用户需要向下滚动直到底部(页脚)然后last_msg_funtion();
才会运行但我想调整检测可能从底部大约 30%
见下图:
我的网站:点击这里
完整代码:点击这里