【UI组件】——用jQuery做一个上拉刷新

技术要点:

1、jQuery的插件写法

2、上拉刷新步骤分解

3、css样式

jQuery的插件写法:

$.fn.pluginName = function() {
    return this.each(function () {
        fn();
    })
};

上拉刷新步骤分解:

上拉刷新可以分解成三个部分:一是开始(start),记录当前鼠标的位置;二是移动(move),根据下拉的位移响应不同的视图;三是结束(end),刷新页面。

;!function ($) {
    "use strict";
    var PTR = function (ele) {
        this.container = $(ele);
        this.container.addClass(‘pull-to-refresh‘);
        this.distance = 60; // 设置参考的下拉位移
        this.attachEvent();
    };
    // 判断是否有touch事件发生
    var isTouch = (function () {
        var isSupportTouch = !!‘ontouchstart‘ in document || window.documentTouch;
        return isSupportTouch;
    })();
    var touchEvents = {
        start: isTouch ? ‘touchstart‘: ‘mousedown‘,
        move: isTouch ? ‘touchmove‘:‘mousemove‘,
        end: isTouch ? ‘touchend‘: ‘mouseup‘
    };
    // 获取事件发生时相对于文档的距离(含滚动距离)
    function getTouchPosition(e) {
         var e = e.orinalEvent || e;
         console.log(e)
         if(e.type === ‘touchstart‘ || e.type === ‘touchmove‘ || e.type === ‘touchend‘) {
             return {
                 x: e.targetTouches[0].pageX,
                 y: e.targetTouches[0].pageY
             }
         }else {
             return {
                 x: e.pageX,
                 y: e.pageY
             }
         }
    };
    PTR.prototype.touchStart = function (e) {
        var p = getTouchPosition(e);
        this.start = p;
        this.diffX = this.diffY = 0;
    };
    PTR.prototype.touchMove = function (e) {
        if(this.container.hasClass(‘refreshing‘)) return;
        if(!this.start) return false;
        var p = getTouchPosition(e);
        this.diffX = p.x - this.start.x;
        this.diffY = p.y - this.start.y;
        if(this.diffY < 0) return;
        this.container.addClass(‘touching‘);
        e.preventDefault();
        e.stopPropagation();
        // 设置container的位移小于页面滚动的距离,给人一种用力下拉的错觉,提升用户体验
        this.diffY = Math.pow(this.diffY, .8);
        this.container.css(‘transform‘, ‘translate3d(0,‘+ this.diffY +‘px, 0)‘);
        if(this.diffY < this.distance) {
            this.container.removeClass(‘pull-up‘).addClass(‘pull-down‘)
        }else {
            this.container.removeClass(‘pull-down‘).addClass(‘pull-up‘)
        }
    };
    PTR.prototype.touchEnd = function (e) {
        var _this = this;
        this.start = false;
        this.container.removeClass(‘pull-down‘);
        this.container.removeClass(‘pull-up‘);
        this.container.removeClass(‘touching‘);
        this.container.css(‘transform‘,‘‘);
        if(this.diffY >= this.distance) {
            this.container.addClass(‘refreshing‘);
            this.container.trigger(‘pull-to-refresh‘)
        }
    };
    // 事件处理程序,通过$.proxy(fn, content)绑定执行函数的上下文。
    PTR.prototype.attachEvent = function () {
        var ele = this.container;
        ele.on(touchEvents.start, $.proxy(this.touchStart, this));
        ele.on(touchEvents.move, $.proxy(this.touchMove, this));
        ele.on(touchEvents.end, $.proxy(this.touchEnd, this));
    };
    // 实例化构造函数
    var pullToRefresh = function (ele) {
        new PTR(ele)
    };
    var pullToRefreshDone = function (ele) {
        $(ele).removeClass(‘refreshing‘);
    };
    // jQuery 插件编写的一般模式
    $.fn.pullToRefresh = function () {
        // return 是插件可链式调用
        // this 在这里是一个jQuery对象,相当于$(ele)。因为在即时执行函数作用域中,没必要用“$(this)”的方式来把this包裹到一个jQuery对象中,因为this本身已经是被包装好的jQuery对象。
        // this.each()使插件代码为多元素集合中的每个元素单独起作用
        return this.each(function () {
            pullToRefresh(this);
        })
    };
    $.fn.pullToRefreshDone = function () {
        return this.each(function () {
            pullToRefreshDone(this);
        })
    }

}(window.jQuery);

HTML代码如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" href="pull-to-refresh.css">
    <style>
        p {
            margin-top: 0;
        }
    </style>
</head>
<body>
<div class="pull-to-refresh_layer">
    <div class="pull-to-refresh-arrow">↓</div>
    <div class="pull-to-refresh-preloader"></div>
    <div class="down">下拉刷新</div>
    <div class="up">释放刷新</div>
    <div class="refresh">正在刷新</div>
</div>
<div>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus amet aperiam, architecto at aut
        beatae dignissimos eaque est ex fugi
        at incidunt inventore natus nemo nostru
        m omnis quos repellat ut voluptas!
    </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus amet aperiam, architecto at aut
        beatae dignissimos eaque est ex fugi
        at incidunt inventore natus nemo nostru
        m omnis quos repellat ut voluptas!
    </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus amet aperiam, architecto at aut
        beatae dignissimos eaque est ex fugi
        at incidunt inventore natus nemo nostru
        m omnis quos repellat ut voluptas!
    </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus amet aperiam, architecto at aut
        beatae dignissimos eaque est ex fugi
        at incidunt inventore natus nemo nostru
        m omnis quos repellat ut voluptas!
    </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus amet aperiam, architecto at aut
        beatae dignissimos eaque est ex fugi
        at incidunt inventore natus nemo nostru
        m omnis quos repellat ut voluptas!
    </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus amet aperiam, architecto at aut
        beatae dignissimos eaque est ex fugi
        at incidunt inventore natus nemo nostru
        m omnis quos repellat ut voluptas!
    </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus amet aperiam, architecto at aut
        beatae dignissimos eaque est ex fugi
        at incidunt inventore natus nemo nostru
        m omnis quos repellat ut voluptas!
    </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus amet aperiam, architecto at aut
        beatae dignissimos eaque est ex fugi
        at incidunt inventore natus nemo nostru
        m omnis quos repellat ut voluptas!
    </p>

</div>
<script src="../jquery-1.8.3.min.js"></script>
<script src="pull-to-refresh.js"></script>
<script>
    $(function () {
        $(document.body).pullToRefresh().on(‘pull-to-refresh‘, function () {
            setTimeout(function () {
                $(document.body).pullToRefreshDone();
            }, 2000)
        });
    })
</script>
</body>
</html>

CSS代码如下:

.pull-to-refresh {
    margin-top: -50px;
    transition: transform .4s;
}
.pull-to-refresh .pull-to-refresh-preloader,
.pull-to-refresh .up,
.pull-to-refresh .refresh {
    display: none;
}
.pull-to-refresh.refreshing {
    transform: translate3d(0,50px,0);
}

.refreshing .pull-to-refresh-arrow,
.refreshing .down,
.refreshing .up {
    display: none;
}
.refreshing .refresh,
.refreshing .pull-to-refresh-preloader {
    display: inline-block;
}
.pull-to-refresh_layer {
    height: 30px;
    line-height: 30px;
    padding-bottom: 10px;
}
.pull-down .pull-to-refresh_layer .up,
.pull-down .pull-to-refresh_layer .refresh {
    display: none;
}
.pull-down .pull-to-refresh_layer .down{
    display: inline-block;
}
.pull-up .pull-to-refresh_layer .up{
    display: inline-block;
}

.pull-up .pull-to-refresh_layer .down,
.pull-up .pull-to-refresh_layer .refresh {
    display: none;
}

.pull-up .pull-to-refresh-arrow {
    transform: rotate(180deg) translate3d(0, 0, 0);
}
.pull-to-refresh-arrow {
    display: inline-block;
    z-index: 10;
    margin-right: 4px;
    transition-duration: 300ms;
    transform: rotate(0deg) translate3d(0, 0, 0);
}

.pull-to-refresh_layer {
    display: inline-block;
}
.pull-to-refresh-preloader {
    display: inline-block;
}
.pull-down {

}
.pull-up {

}
.down {
    display: inline-block;
}
.up {
    display: inline-block;
}
.refresh {
    display: inline-block;
}

时间: 2024-10-06 06:27:18

【UI组件】——用jQuery做一个上拉刷新的相关文章

jQuery手机端上拉刷新下拉加载更多页面

<!doctype html> <html> <head> <title>jquery 手机端上拉刷新下拉加载更多页面</title> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <meta name="viewpost" content="width=device-wi

iOS动画进阶 - 实现炫酷的上拉刷新动效

移动端访问不佳,请访问我的个人博客 最近撸了一个上拉刷新的小轮子,只要遵循一个协议就能自定义自己动效的上拉刷新和加载,我自己也写了几个动效进去,下面是一个比较好的动效的实现过程 先上效果图和github地址,有其他好的动效大家也可以交流~ 动效的原地址,在uimovement网站上看到这个动效时感觉特别6,就想自己实现一下,费了很长时间,换了几种方案终于实现出来了,下面是实现的步骤: 分析动效 写一个动效的第一步就应该仔细的去分析它,把它的每一帧展开来看,找一个最合适的方式来实现它,下面是我分析

vux (scroller)上拉刷新、下拉加载更多

1)比较关键的地方是要在 scroller 组件上里加一个 ref 属性 <scroller :lockX=true height="-170" :pulldown-config="{downContent: '下拉刷新', upContent: '释放后更新'}" :pullup-config="{upContent:'上拉加载更多', downContent: '释放后加载'}" ref="myScroller" :

iOS动画进阶 - 实现炫酷的上拉刷新动效(二)

最近撸了一个上拉刷新的小轮子,只要遵循一个协议就能自定义自己动效的上拉刷新和加载,我自己也写了几个动效进去,下面是一个比较好的动效的实现过程 先上效果图和github地址,完整代码个demo和进入查看,有其他好的动效大家也可以学习交流~ 分析动效 写一个动效的第一步就应该仔细的去分析它,把它的每一帧展开来看,找一个最合适的方式来实现它,我们可以把以上动画分解成以下三个步骤: 箭头的绘制和动效 圆环的绘制和小点的旋转 对勾的绘制和动画 以下是会用到主要的类: CAShapeLayer UIBezi

Android UI之下拉刷新上拉刷新实现

在实际开发中我们经常要用到上拉刷新和下拉刷新,因此今天我写了一个上拉和下拉刷新的demo,有一个自定义的下拉刷新控件 只需要在布局文件中直接引用就可以使用,非常方便,非常使用,以下是源代码: 自定义的ListView RTPullListView 1 package com.ryantang.pulllistview; 2 3 import java.util.Date; 4 5 import android.content.Context; 6 import android.util.Attr

用贝塞尔曲线做的一个下拉刷新动画

以前就一直觉得ios 上的 mail 的下拉刷新的动画非常酷炫,但是一直不知道那种"滴虫"效果是怎么实现的.直到前段时间看到的贝塞尔曲线,感觉很神奇.如下图: 看起来和滴虫动画有点像,然后就花了点时间做了一个下拉刷新出来. 项目地址:https://github.com/ufo22940268/DropRefreshView 欢迎围观

使用MJRefresh遇到的一个问题,上拉刷新后tableview瞬间滑到最底部

最近用MJRefresh上拉刷新时遇到一个问题,就是上拉刷新后,tableview会瞬间滑到最底部,用户还要往回翻才能看到新刷出来的数据,体验十分不好.查了很久没找到原因,最后发现在refreshview停止动画前,我代码里调用了两次tableview reloaddata,抱着尝试的心理,我改了代码结构,删除了一个tableview reloaddata,结果还真被我蒙对了!原因不明,可能是tableview的一个小bug,也可能是我的 MJRefreshView版本太老,是时候更新一下这个第

安卓,采用最简单易懂的方式实现上拉刷新下拉加载更多

<!-- Description:上拉刷新,下拉加载更多是现在最流行的手势操作,但是对于初学者来说,在实现上是有一定难度的, 网上很多教程讲的都过于复杂,对于初学者无法起到引导作用,特此写本文,帮助安卓新手入门理解此, 还有最为重要的一点:本文只帮助你理解,并不是想你成为代码搬运工!别被那么多代码吓到了, 其中很多都是注释,仔细看注释对你理解有很大的帮助 Author:Booker L Date:2014-05-16 --> 一,事先准备: 实现该功能,最基本的需要两个东西,一个是OnTouc

Android之 RecyclerView,CardView 详解和相对应的上拉刷新下拉加载

随着 Google 推出了全新的设计语言 Material Design,还迎来了新的 Android 支持库 v7,其中就包含了 Material Design 设计语言中关于 Card 卡片概念的实现 -- CardView.RecyclerView也是谷歌V7包下新增的控件,用来替代ListView的使用,在RecyclerView标准化了ViewHolder类似于ListView中convertView用来做视图缓存. RecyclerView的优点就是,他可以通过设置LayoutMan