基于HTML5上使用iScroll實(shí)現(xiàn)下拉刷新,上拉加載更多
來(lái)源:易賢網(wǎng) 閱讀:1061 次 日期:2016-06-25 14:02:16
溫馨提示:易賢網(wǎng)小編為您整理了“基于HTML5上使用iScroll實(shí)現(xiàn)下拉刷新,上拉加載更多”,方便廣大網(wǎng)友查閱!

本文主要介紹在HTML5中使用iScroll實(shí)現(xiàn)下拉刷新,上拉加載更多數(shù)據(jù)的方法,主要就是寫了兩個(gè)自定義函數(shù)pullDownAction和pullUpAction,分別在下拉和上拉的事件中調(diào)用他們。

前言

前一段有個(gè)手機(jī)端的項(xiàng)目需要用到下拉刷新和上拉加載更多的效果,腦海里第一反映就是微博那種效果,剛開(kāi)始的理解有些偏差,以為下拉也是追加數(shù)據(jù),上拉也是追加數(shù)據(jù),后請(qǐng)教同事后發(fā)現(xiàn)其實(shí)下拉只是刷新最新數(shù)據(jù)而已,上拉是追加數(shù)據(jù)。

使用技巧

1、引用iScroll.js, 在初始化時(shí)添加兩個(gè)事件監(jiān)聽(tīng):touchMove、DOMContentLoaded。

2、實(shí)現(xiàn)iScroll插件的onScrollEnd事件, 也就是在這個(gè)事件里調(diào)用你自己的ajax方法實(shí)現(xiàn)數(shù)據(jù)的刷新和追加。

3、上拉加載更多請(qǐng)求后臺(tái)時(shí)就相當(dāng)于分頁(yè)請(qǐng)求數(shù)據(jù),這時(shí)候需要在ajax請(qǐng)求時(shí)發(fā)送pageIndex參數(shù),而初始化加載時(shí)需要從后臺(tái)返回一個(gè)pageCount以便前臺(tái)判斷。

4、最關(guān)鍵的就是實(shí)現(xiàn)下拉刷新方法(pullDownAction)和上拉加載更多(pullUpAction)方法。

運(yùn)行效果圖

名單

實(shí)現(xiàn)方法

var  myScroll,

 pullDownEl, pullDownOffset,

 pullUpEl, pullUpOffset,

 generatedCount = 0;

/**

 * 下拉刷新 (自定義實(shí)現(xiàn)此方法)

 * myScroll.refresh(); 數(shù)據(jù)加載完成后,調(diào)用界面更新方法

 */

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(); //數(shù)據(jù)加載完成后,調(diào)用界面更新方法 

 }, 1000); 

}

/**

 * 滾動(dòng)翻頁(yè) (自定義實(shí)現(xiàn)此方法)

 * myScroll.refresh(); // 數(shù)據(jù)加載完成后,調(diào)用界面更新方法

 */

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(); //數(shù)據(jù)加載完成后,調(diào)用界面更新方法 

 }, 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 = '松手開(kāi)始更新...';

 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 = '松手開(kāi)始更新...';

 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); 

總結(jié):

主要還是要對(duì)iScroll做一些初始化的操作,針對(duì)不同的動(dòng)作顯示不同的提示信息,然后針對(duì)下拉和上拉事件寫相應(yīng)刷新和加載更多的處理方法即可。

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)