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

以下任意均可:

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

544f102729f63

DEMO:http://sources.ikeepstudying.com/drop-more/

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

 

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

20150113053148720

DEMO:http://sources.ikeepstudying.com/cubiq-iscroll/

下载:jquery-iscroll  | 简约版: cubiq-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

 

更多参考:

jQuery: jScroll 下拉加载更多

滚屏加载–无刷新动态加载数据技术的应用

js网页顶部线性页面加载进度条,jquery头部线性进度条总结

DataList:HTML5中的input输入框自动提示宝器

jQuery : ddSlick 自定义select下拉框 custom drop down with images and description.

 

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

Loading

Add a Comment

Your email address will not be published. Required fields are marked *

Time limit is exhausted. Please reload CAPTCHA.