jQuery模拟原生态App上拉刷新下拉加载效果代码

以下任意均可:

1. jQuery模拟原生态App上拉刷新下拉加载效果代码,鼠标上拉时会显示loading字样,并且会模拟加载一条静态数据,支持触屏设备使用。

jQuery模拟原生态App上拉刷新下拉加载效果代码

原文:http://www.sucaijiayuan.com/Js/other/1055.html

下载:jQuery模拟原生态App上拉刷新下拉加载效果代码

2.  jquery iscroll上拉 下拉加载内容

jQuery模拟原生态App上拉刷新下拉加载效果代码

原文:http://www.kuitao8.com/20150113/3462.shtml

下载:jquery-iscroll

3. 移动端下拉刷新、上拉加载更多 Zepto/jQuery插件

GitHub地址:https://github.com/ximan/dropload

使用方法

$('.element').dropload({
    loadUpFn : function(me){
        $.ajax({
            type: 'GET',
            url: 'json/update.json',
            dataType: 'json',
            success: function(data){
                alert(data);
                // 代码执行后必须重置
                me.resetload();
            },
            error: function(xhr, type){
                alert('Ajax error!');
                me.resetload();
            }
        });
    },
    loadDownFn : function(me){
        $.ajax({
            type: 'GET',
            url: 'json/more.json',
            dataType: 'json',
            success: function(data){
                alert(data);
                // 代码执行后必须重置
                me.resetload();
            },
            error: function(xhr, type){
                alert('Ajax error!');
                me.resetload();
            }
        });
    }
});

下载:dropload-gh-pages

justcode.ikeepstudying.com

相关推荐