今天终于学会了下拉刷新,上拉刷新
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了今天终于学会了下拉刷新,上拉刷新相关的知识,希望对你有一定的参考价值。
<div id="megBox">
<div id="refreshbar" style="height:0">下拉刷新。。</div>
</div>
var touchPoint={
Y:0,
Loading:false
}
function InitTouch(){
var box=document.getElementById("megBox");
box.addEventListener("touchstart",function(target){
touchPoint.Y=target.targetTouches[0].pageY;
},false);
box.addEventListener("touchmove",function(target){
if(!touchPoint.Loading){
var distance=target.targetTouched[0].pageY-touchPoint.Y;
if(distance>100){
touchPoint.Loading=true;
$("#refreshbar").height(30);
setTimeout(function(){
//刷新方法
},2000);
}
}
},false);
}
以上是关于今天终于学会了下拉刷新,上拉刷新的主要内容,如果未能解决你的问题,请参考以下文章
为啥使用mui的上拉刷新下拉加载后在电脑上的刷新加载正常手机上就不正常了
翻翻git之---RecycleView的上拉,下拉刷新,样式切换,添加foot和header的强大库 RecyclerViewManager