您好,登錄后才能下訂單哦!
本文實例為大家分享了iscorll實現(xiàn)上拉下拉加載刷新的具體代碼,供大家參考,具體內(nèi)容如下
實現(xiàn)原理是:判斷fiiptop,flipdown是否顯示為依據(jù)
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>
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。