iScroll下拉刷新上拉加载(简洁易懂版本)

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            * {
                margin: 0;
                padding: 0;
            }

            #container {
                height: 500px;
                overflow: hidden;
                position: relative;
                width: 600px;
                border: 1x solid #ccc;
                margin: 10px auto;
            }

            li {
                height: 100px;
                background: #fafafa;
                border-bottom: 1px solid #ccc;
            }
        </style>
    </head>

    <body>
        <div id="container">
            <ul>
                <li id="pullDown" style="display:none">下拉刷新</li>
                <li>1</li>
                <li>2</li>
                <li>3</li>
                <li>4</li>
                <li>5</li>
                <li>6</li>
                <li>7</li>
                <li>8</li>
                <li>9</li>
                <li>10</li>
                <li id="pullUp" style="display:none">上拉加载</li>
            </ul>
        </div>
    </body>
    <script src="js/iscroll-probe-min.js" type="text/javascript" charset="utf-8"></script>
    <script type="text/javascript">
        var _down = document.getElementById("pullDown");
        var _up = document.getElementById("pullUp");
        var _con = document.getElementById("container");

        var iScroll = new IScroll("#container", {
            mouseWheel: true,
            scrollbars: true,
            probeType: 3
        })

        iScroll.on("scroll", function() {
            if(this.y >= 50) {
                _down.style.display = "block";
                return;
            } else if(this.y < 50 && this.y >= 0) {
                _down.style.display = "none";
                return;
            }


            if(this.maxScrollY - this.y > 50) {
                //alert("上拉刷新");
                _up.style.display = "block";
                return;
            } else if(this.maxScrollY - this.y > 0 && this.maxScrollY - this.y <50 ){
                _up.style.display = "none"
                return;
            }
        })

        _con.onmouseup = function(){
            if(iScroll.y > 50 || iScroll.maxScrollY - iScroll.y > 50){
                setTimeout(function(){
                    iScroll.refresh();
                },300)
            }
        }
    </script>

</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值