2

当 iScroll 容器到达页面末尾时,我正在尝试挂钩函数回调,位于底端(Y 轴)。这样我就可以按需加载更多内容 - 而不是全部 300 多个内容。

有人研究过吗?有什么提示吗?

这是我所指的图书馆:http ://cubiq.org/iscroll-4

4

1 回答 1

1

正如 drmatt 所提到的,您应该查看 Pull to refresh demo

http://cubiq.org/dropbox/iscroll4/examples/pull-to-refresh/

您需要构建自己的逻辑,不需要用户拉来添加更多项目。

类似于以下内容(伪代码 - 未经测试的代码)

var isAlreadyLoading = 0;
var iscroller = new iScroll(
'your-element-id', 
  { 
    hScroll: false, 
    bounce: false, // do not bounce
    onScrollMove: function () {
      // CHECK if we've 350px gap before reaching end of the page
      if ( (this.y < (this.maxScrollY + 350)) && (isAlreadyLoading == 0) ){ 
        // start loading next page content here

        // update this flag inside load more and set to 0 when complete
        isAlreadyLoading = 1; 
      }
    },
    onScrollEnd: function () {
      // check if we went down, and then load content
      if ( isAlreadyLoading == 0 ) {
        // Load more content

        // update this flag inside load more and set to 0 when complete
        isAlreadyLoading = 1; 
      } else {
        // DO NOTHING
      }
    }
  } // end of Scoller config object
); // end iScroll instance
于 2012-10-09T18:46:47.697 回答