iscroll5實現(xiàn)上拉加載更多西雀,下拉刷新

本篇介紹的是html中使用iscroll實現(xiàn)上拉加載更多,下拉刷新數(shù)據(jù)歉摧。

前言
在一次開發(fā)微信公眾號的項目中艇肴,我需要添加上拉加載更多數(shù)據(jù),下拉刷新叁温。當(dāng)時還沒有做過這樣的功能再悼。請教同事和上網(wǎng)搜索之后,發(fā)現(xiàn)iscroll可以實現(xiàn)我們需要的功能膝但。

iscroll5下載鏈接:http://cubiq.org/iscroll-5


效果

  • 上拉加載更多


    iscroll1.png

    iscroll2.png
  • 下拉刷新


    iscroll3.png

    iscroll4.png
  • 尖頭和加載圖標(biāo)


    pull-icon@2x.png

實現(xiàn)步驟

  • 引入js/iscroll.js和js/iscroll-probe.js文件冲九。
  • js初始化IScroll,添加監(jiān)聽跟束,并實現(xiàn)獲取監(jiān)聽之后觸發(fā)的方法莺奸。
  • 實現(xiàn)上拉加載方法和下拉刷新方法。

具體實現(xiàn)代碼

  • 在html文件中冀宴,引入js和css灭贷。
    iscroll.css文件:
/*iscroll css*/

#wrapper {
    position: absolute;
    z-index: -1;
    bottom: 0px;     /* 底部無控件  */
    left: 0;
    width: 100%;
    overflow: hidden;
}

#scroller {
    top: -40px;             /* 隱藏下啦顯示條  下啦顯示條div高度為40px  */
    position: absolute;
    z-index: -1;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    width: 100%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
    text-size-adjust: none;
}

#pullDown,#pullUp {
    height:40px;
    line-height:40px;
    font-weight:bold;
    font-size:14px;
}

#pullDown {
    /*top: -20px;*/
}

#pullDown .pullDownIcon, #pullUp .pullUpIcon  {
    display:block; float:left;
    width:40px; height:40px;
    background:url(../pull-icon@2x.png) 0 0 no-repeat;
    -webkit-background-size:40px 80px; background-size:40px 80px;
    -webkit-transition-property:-webkit-transform;
    -webkit-transition-duration:250ms;
}
#pullDown .pullDownIcon {
    -webkit-transform:rotate(0deg) translateZ(0);
}
#pullUp .pullUpIcon  {
    -webkit-transform:rotate(-180deg) translateZ(0);
}

#pullDown.flip .pullDownIcon {
    -webkit-transform:rotate(-180deg) translateZ(0);
}

#pullUp.flip .pullUpIcon {
    -webkit-transform:rotate(0deg) translateZ(0);
}

#pullDown.loading .pullDownIcon, #pullUp.loading .pullUpIcon {
    background-position:0 100%;
    -webkit-transform:rotate(0deg) translateZ(0);
    -webkit-transition-duration:0ms;

    -webkit-animation-name:loading;
    -webkit-animation-duration:2s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
}
.pullUpIcon{text-align:center;width:40px;margin:0 auto;display:block;margin-left:38%;}
.pullDownIcon{text-align:center;width:40px;margin:0 auto;display:block;margin-left:38%;}
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <link rel="stylesheet" href="iscroll/css/iscroll.css" />

    <style type="text/css">
        *{ margin: 0; padding: 0; border: 0;}
        #wrapper
        {
            top: 48px;       /* 頂部導(dǎo)航欄  */
        }
        .brighten_header{ background-color: #3b9eed; height: 48px;text-align: center; color: white; font-size: 16px; position: relative;}
        .brighten_header_text{vertical-align: middle;  line-height: 48px;}
    </style>
</head>
<body onload="loaded()">
<div class="brighten_header">
    <div class="brighten_header_text">數(shù)據(jù)列表</div>
</div>

<div id="wrapper">
    <div id="scroller">
        <div id="pullDown">
            <span class="pullDownIcon" ></span><span class="pullDownLabel" >下拉刷新...</span>
        </div>
        <div id="contentView" >
            <div style="padding: 10px 15px;">
                標(biāo)題
            </div>
            <div style="padding: 10px 15px;">
                標(biāo)題
            </div>
            <div style="padding: 10px 15px;">
                標(biāo)題
            </div>
        </div>
        <div id="pullUp">
            <span class="pullUpIcon"></span><span class="pullUpLabel">上拉刷新...</span>
        </div>
    </div>
</div>
</body>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="iscroll/js/iscroll.js"></script>
<script type="text/javascript" src="iscroll/js/iscroll-probe.js"></script>
<script type="text/javascript" src="iscroll/js/iscroll-custom.js"></script>

<script type="text/javascript">

    // 獲取數(shù)據(jù)
    function getData()
    {
        //  獲取數(shù)據(jù)接口  ………………………………

    }

    // 請求返回數(shù)據(jù)處理
    function resultData()
    {
        // 處理數(shù)據(jù) …………………………


        //  復(fù)原上拉下拉框的文字
        //defaultStatu("more");
        defaultStatu("update");

    }
</script>
</html>

注:iscroll.js和iscroll-probe.js的順序不要反了,要不然可能會出現(xiàn)scroll監(jiān)聽事件不觸發(fā)的情況略贮。

  • 添加scroll監(jiān)聽甚疟,并實現(xiàn)監(jiān)聽方法。
    iscroll-custom.js文件
/*iscroll-custom js*/


var isLoadUpdate = false;
var myScroll,pullDownEl, pullDownOffset,
    pullUpEl, pullUpOffset,pageSize=2;
var isTouch = false;          // 手是否觸摸屏幕
var isMoreLoading = false;          // 正在加載更多數(shù)據(jù)中
var isUpdateLoading = false;     // 正在更新數(shù)據(jù)中


function loaded() {

    pullDownEl = document.getElementById('pullDown');
    pullDownOffset = pullDownEl.offsetHeight + 15;
    pullUpEl = document.getElementById('pullUp');
    pullUpOffset = pullUpEl.offsetHeight + 15;

    myScroll = new IScroll('#wrapper', {
        preventDefault:false,   // 是否屏蔽默認事件
        probeType: 3,
        mouseWheel: true,   // 是否監(jiān)聽鼠標(biāo)滾輪事件
        scrollbars: true,    //是否顯示默認滾動條
        fadeScrollbars: true,   //是否漸隱滾動條逃延,關(guān)掉可以加速
        disableTouch: false
    });
    myScroll.on('scroll',positionJudge);  
}

function positionJudge(){
    if(this.y>pullDownOffset && !isUpdateLoading)  //判斷下拉
    {
        pullDownEl.className = 'flip';
        pullDownEl.querySelector('.pullDownLabel').innerHTML = '松開開始更新...';
        if(!isTouch)     //  松開執(zhí)行
        {
            isUpdateLoading = true;
            pullDownEl.querySelector('.pullDownLabel').innerHTML = '加載中...';
            pullDownEl.className = 'loading';
            updateData();
        }
    }
    else if (this.y<pullDownOffset && isTouch && !isUpdateLoading && this.y>0)
    {
        pullDownEl.className = '';
        pullDownEl.querySelector('.pullDownLabel').innerHTML = '下拉刷新...';
    }
    else if(this.y<(this.maxScrollY-pullUpOffset) && !isMoreLoading)
    {
        pullUpEl.className = 'flip';
        pullUpEl.querySelector('.pullUpLabel').innerHTML = '松開加載更多...';
        if(!isTouch)        //  松開執(zhí)行
        {
            isMoreLoading = true;
            pullUpEl.querySelector('.pullUpLabel').innerHTML = '加載中...';
            pullUpEl.className = 'loading';
            moreData();
        }
    }
    else if(this.y>(this.maxScrollY-pullUpOffset) && !isMoreLoading && isTouch && this.y<0)
    {
        pullUpEl.className = '';
        pullUpEl.querySelector('.pullUpLabel').innerHTML = '上拉刷新...';
    }

}

document.getElementById("wrapper").addEventListener('touchend', function (e) {isTouch = false;}, false);
document.getElementById("wrapper").addEventListener('touchstart', function (e) {isTouch = true;}, false);
document.getElementById("wrapper").addEventListener('touchmove', function (e) {e.preventDefault();}, false);

function updateData() {
    isLoadUpdate = true;
    getData();
}

function moreData(){
    isLoadUpdate = false;
    getData();
}

function defaultStatu(type) {
    if(type == "more")  //more
    {
        isMoreLoading = false;
        pullUpEl.className = '';
        pullUpEl.querySelector('.pullUpLabel').innerHTML = '上拉刷新...';
    }
    else if(type == "update")               //update
    {
        isUpdateLoading = false;
        pullDownEl.className = '';
        pullDownEl.querySelector('.pullDownLabel').innerHTML = '下拉刷新...';
    }
}

iscroll5參數(shù)說明:http://blog.csdn.net/sweetsuzyhyf/article/details/44195549/

以上基本完成了上拉下拉功能览妖,但是這里有個不足,就是數(shù)據(jù)不足一頁的時候揽祥,scroll無法上下滑動讽膏,只有當(dāng)里面的內(nèi)容大于一頁的時候,才有滑動效果拄丰。我們可以在js中把內(nèi)容的最小高度設(shè)置為屏幕高度減去wrapper距離頂部的距離桅打,然后把scroller的高度設(shè)置為內(nèi)容高度加1。

<!-- 在html頁面中添加下面js -->


$(document).ready(function(){
    initScrollerHeight();
});

function initScrollerHeight() {
    var bodyHeight = $(window).height();
    var ulTop = $('#wrapper').offset().top;
    var height = bodyHeight - ulTop;
    $('#contentView').css('min-height', height);

    //  設(shè)置最小
    var scrollerCustomHeight = $('#contentView').height() + 1;
    var scrollerHeightPX = scrollerCustomHeight + "px";
    $('#scroller').css('height', scrollerHeightPX);
}

本篇小結(jié):
1愈案、引入js。
2鹅搪、初始化scroll站绪,并設(shè)置屬性。
3丽柿、添加監(jiān)聽恢准,并實現(xiàn)監(jiān)聽方法魂挂。
4、實現(xiàn)下拉上拉方法馁筐。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末涂召,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子敏沉,更是在濱河造成了極大的恐慌果正,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件盟迟,死亡現(xiàn)場離奇詭異秋泳,居然都是意外死亡,警方通過查閱死者的電腦和手機攒菠,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進店門迫皱,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人辖众,你說我怎么就攤上這事卓起。” “怎么了凹炸?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵戏阅,是天一觀的道長。 經(jīng)常有香客問我还惠,道長饲握,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任蚕键,我火速辦了婚禮救欧,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘锣光。我一直安慰自己笆怠,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布誊爹。 她就那樣靜靜地躺著蹬刷,像睡著了一般。 火紅的嫁衣襯著肌膚如雪频丘。 梳的紋絲不亂的頭發(fā)上办成,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天,我揣著相機與錄音搂漠,去河邊找鬼迂卢。 笑死,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的而克。 我是一名探鬼主播靶壮,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼员萍!你這毒婦竟也來了腾降?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤碎绎,失蹤者是張志新(化名)和其女友劉穎螃壤,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體混卵,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡映穗,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了幕随。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蚁滋。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖赘淮,靈堂內(nèi)的尸體忽然破棺而出辕录,到底是詐尸還是另有隱情,我是刑警寧澤梢卸,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布走诞,位于F島的核電站,受9級特大地震影響蛤高,放射性物質(zhì)發(fā)生泄漏蚣旱。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一戴陡、第九天 我趴在偏房一處隱蔽的房頂上張望塞绿。 院中可真熱鬧,春花似錦恤批、人聲如沸异吻。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽诀浪。三九已至,卻和暖如春延都,著一層夾襖步出監(jiān)牢的瞬間雷猪,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工晰房, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留春宣,地道東北人酵颁。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像月帝,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子幽污,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容