H5基于iScroll实现下拉刷新,上拉加载更多
前言
前一段有个手机端的项目需要用到下拉刷新和上拉加载更多的效果,脑海里第一反映就是微博那种效果,刚开始的理解有些偏差,以为下拉也是追加数据,上拉也是追加数据,后请教同事后发现其实下拉只是刷新最新数据而已,上拉是追加数据。
使用技巧
1、引用iScroll.js, 在初始化时添加两个事件监听:touchMove、DOMContentLoaded。
2、实现iScroll插件的onScrollEnd事件, 也就是在这个事件里调用你自己的ajax方法实现数据的刷新和追加。
3、上拉加载更多请求后台时就相当于分页请求数据,这时候需要在ajax请求时发送pageIndex参数,而初始化加载时需要从后台返回一个pageCount以便前台判断。
4、最关键的就是实现下拉刷新方法(pullDownAction)和上拉加载更多(pullUpAction)方法。
效果图
实现方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | var myScroll, pullDownEl, pullDownOffset, pullUpEl, pullUpOffset, generatedCount = 0; /** * 下拉刷新 (自定义实现此方法) * myScroll.refresh(); 数据加载完成后,调用界面更新方法 */ function pullDownAction () { setTimeout( function () { var el, li, i; el = document.getElementById( 'thelist' ); for (i=0; i<3; i++) { li = document.createElement( 'li' ); li.innerText = 'Generated row ' + (++generatedCount); el.insertBefore(li, el.childNodes[0]); } myScroll.refresh(); //数据加载完成后,调用界面更新方法 }, 1000); } /** * 滚动翻页 (自定义实现此方法) * myScroll.refresh(); // 数据加载完成后,调用界面更新方法 */ function pullUpAction () { setTimeout( function () { // <-- Simulate network congestion, remove setTimeout from production! var el, li, i; el = document.getElementById( 'thelist' ); for (i=0; i<3; i++) { li = document.createElement( 'li' ); li.innerText = 'Generated row ' + (++generatedCount); el.appendChild(li, el.childNodes[0]); } myScroll.refresh(); //数据加载完成后,调用界面更新方法 }, 1000); } /** * 初始化iScroll控件 */ function loaded() { pullDownEl = document.getElementById( 'pullDown' ); pullDownOffset = pullDownEl.offsetHeight; pullUpEl = document.getElementById( 'pullUp' ); pullUpOffset = pullUpEl.offsetHeight; myScroll = new iScroll( 'wrapper' , { scrollbarClass: 'myScrollbar' , useTransition: false , topOffset: pullDownOffset, onRefresh: function () { if (pullDownEl.className.match( 'loading' )) { pullDownEl.className = '' ; pullDownEl.querySelector( '.pullDownLabel' ).innerHTML = '下拉刷新...' ; } else if (pullUpEl.className.match( 'loading' )) { pullUpEl.className = '' ; pullUpEl.querySelector( '.pullUpLabel' ).innerHTML = '上拉加载更多...' ; } }, onScrollMove: function () { if ( this .y > 5 && !pullDownEl.className.match( 'flip' )) { pullDownEl.className = 'flip' ; pullDownEl.querySelector( '.pullDownLabel' ).innerHTML = '松手开始更新...' ; this .minScrollY = 0; } else if ( this .y < 5 && pullDownEl.className.match( 'flip' )) { pullDownEl.className = '' ; pullDownEl.querySelector( '.pullDownLabel' ).innerHTML = '下拉刷新...' ; this .minScrollY = -pullDownOffset; } else if ( this .y < ( this .maxScrollY - 5) && !pullUpEl.className.match( 'flip' )) { pullUpEl.className = 'flip' ; pullUpEl.querySelector( '.pullUpLabel' ).innerHTML = '松手开始更新...' ; this .maxScrollY = this .maxScrollY; } else if ( this .y > ( this .maxScrollY + 5) && pullUpEl.className.match( 'flip' )) { pullUpEl.className = '' ; pullUpEl.querySelector( '.pullUpLabel' ).innerHTML = '上拉加载更多...' ; this .maxScrollY = pullUpOffset; } }, onScrollEnd: function () { if (pullDownEl.className.match( 'flip' )) { pullDownEl.className = 'loading' ; pullDownEl.querySelector( '.pullDownLabel' ).innerHTML = '加载中...' ; pullDownAction(); // ajax call } else if (pullUpEl.className.match( 'flip' )) { pullUpEl.className = 'loading' ; pullUpEl.querySelector( '.pullUpLabel' ).innerHTML = '加载中...' ; pullUpAction(); // ajax call } } }); setTimeout( function () { document.getElementById( 'wrapper' ).style.left = '0' ; }, 800); } //初始化绑定iScroll控件 document.addEventListener( 'touchmove' , function (e) { e.preventDefault(); }, false ); document.addEventListener( 'DOMContentLoaded' , loaded, false ); |
作者:sword-successful
出处:https://www.cnblogs.com/sword-successful/p/4609498.html
版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」许可协议进行许可。
博客地址: | http://www.cnblogs.com/sword-successful/ |
博客版权: | 本文以学习、研究和分享为主,欢迎转载,但必须在文章页面明显位置给出原文连接。 如果文中有不妥或者错误的地方还望高手的你指出,以免误人子弟。如果觉得本文对你有所帮助不如【推荐】一下!如果你有更好的建议,不如留言一起讨论,共同进步! 再次感谢您耐心的读完本篇文章。 |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构