所以,我正在使用以下jquery(无限Ajax Scroll),下面是代码:http://infiniteajaxscroll.com/docs/overview.html
//16.Infinite scroll
var ias = jQuery.ias({
container: '#rhm_post_show',
item: '.rhmpsd_container',
pagination: '#rh_nav_below',
next: '.rh_nav_next a'
});
所以,现在,它会在最底层到达页面时加载下一个内容。
当页面是"几乎"是否有办法触发负载?或80%的页面高度?
谢谢!
答案 0 :(得分:2)
这不是一个适合SO的问题,因为你依赖于大多数人都不会知道的特定jQuery插件。
我决定点击您的链接,然后导航到选项。 http://infiniteajaxscroll.com/docs/options.html
在最底部有一个解释提及negativeMargin
。
对我而言,我在下面编写的代码似乎可行。
var ias = jQuery.ias({
container: '#rhm_post_show',
item: '.rhmpsd_container',
pagination: '#rh_nav_below',
next: '.rh_nav_next a',
negativeMargin: 250
});
“设置negativeMargin为250意味着IAS将开始加载250 最后一个项目之前的像素已滚动到视图中。“