您好,登錄后才能下訂單哦!
本文實例為大家分享了iscorll實現上拉下拉加載刷新的具體代碼,供大家參考,具體內容如下
實現原理是:判斷fiiptop,flipdown是否顯示為依據
myScroll = new iScroll('wraphome', { fixedScrollbar: true, hideScrollbar: true, fadeScrollbar: true, hScrollbar: false, vScrollbar: true, onScrollMove: function () { var topstat = $(".fliptop").is(":visible"); var downstat = $(".flipdown").is(":visible"); if (this.y > 15 && !topstat && !downstat) { $(".fliptop").fadeIn(300); } else if (this.y < 15 && topstat) { $(".fliptop").hide(); } else if (this.y < (this.maxScrollY - 25) && !topstat && !downstat) { $(".flipdown").fadeIn(300); this.refresh(); //這里是當顯示正在加載中時刷新底部位置 } else if (this.y > (this.maxScrollY + 25) && downstat) { $(".flipdown").hide(); } }, onTouchEnd: function () { var topstat = $(".fliptop").is(":visible"); var downstat = $(".flipdown").is(":visible"); if (topstat && !downstat) { $(".fliptop").html("正在加載中……"); setTimeout(function(){ //此處為你自己的邏輯方法 },3000); } else if (downstat && !topstat) { $(".flipdown").html("正在加載中……"); setTimeout(function(){ //此處為你自己的邏輯方法 },3000); } } });
頁面部分
<div id="wraphome" class="scroll"> <div class="scroll-inner"> <div class="fliptop">松手開始加載...</div> <div class="list"> ............. </div> <div class="flipdown">松手開始加載...</div> </div> </div>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。