iscroll.js 下拉刷新和上拉加载
html代码如下
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header id="header" class="blue">
</header>
<section id="section">
<div id="scroll">
<header id="upRefresh">
<span class="downSpan">下拉刷新</span>
</header>
<section id="scroll-box"><div class="item"><img src="img/1.jpg"></div>
<div class="item"><img src="img/2.jpg"></div>
<div class="item"><img src="img/3.jpg"></div>
<div class="item"><img src="img/4.jpg"></div>
<div class="item"><img src="img/5.jpg"></div>
<div class="item"><img src="img/6.jpg"></div>
<div class="item"><img src="img/10.jpg"></div>
<div class="item"><img src="img/9.jpg"></div>
<div class="item"><img src="img/8.jpg"></div>
<div class="item"><img src="img/7.jpg"></div>
</section>
<footer id="downRefresh">
<span class="upSpan">上拉加载</span>
</footer>
</div>
</section>
<footer id="footer" class="blue">
</footer>
<script type="text/javascript" src="js/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="js/iscroll.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>
这里reset.css主要是为了清除浏览器的默认样式。可以看我上一篇博客里面有;
style.css里面主要是简单的样式,代码如下
#header{position: fixed;top: 0px;left: 0px;height: 58px;width: 100%;}
.blue{background-color:#17466f;}
#section{position: fixed;top: 58px;bottom: 36px;width: 100%;}
#scroll{width: 100%;}
.item{width: 44%;box-shadow: 0 0 5px 0px #666;}
#footer{position: fixed;bottom: 0px;left: 0px;height: 36px;width: 100%;}
#upRefresh,#downRefresh{height:36px;line-height:36px;width: 100%;text-align: center;}
最核心的是在js里面进行,代码如下
function waterFall(opations){
this.father = document.getElementById(opations.father);
this.liNum = 0;
this.childs = this.father.children;
this.liWidth = opations.childWidth || this.childs[0].offsetWidth;
this.fatherWidth = opations.fatherWidth || this.father.offsetWidth;
this.childNum = 0;
this.padding =0;
this.heightPdding =opations.heightPdding;
this.arrHeight = [];
this.minHeight = 0;
this.maxHeight = 0;
this.minIdx = 0;
this.init();
}
waterFall.prototype = {
init:function(){
this.mune();
for(var y = 0; y < this.liNum;y++){
this.childs[y].style.position = "absolute";
this.childs[y].style.width = this.liWidth +"px";
if(y < this.childNum){
this.childs[y].style.left = (this.liWidth*y+this.padding*(y+1))+"px";
this.childs[y].style.top = this.heightPdding+"px";
this.arrHeight.push(parseInt(this.childs[y].offsetHeight)+this.heightPdding*2)
}else{
var b = Math.floor(y/this.childNum);
this.minHeight = Math.min.apply(null,this.arrHeight);
this.minIdx = this.fountMin();
this.childs[y].style.left = (this.liWidth*this.minIdx+this.padding*(this.minIdx+1))+"px";
this.childs[y].style.top = this.minHeight +"px";
this.arrHeight[this.minIdx] += parseInt(this.childs[y].offsetHeight)+this.heightPdding;
}
}
this.maxHeight = Math.max.apply(null,this.arrHeight);
this.father.style.height = this.maxHeight+ "px";
this.father.style.position = "relative";
this.father.style.width = this.fatherWidth+ "px";
},
mune:function(){
this.childNum = Math.floor(this.fatherWidth/this.liWidth);
this.padding = parseInt(this.fatherWidth - this.liWidth*this.childNum)/(this.childNum+1);
this.liNum = this.childs.length;
},
fountMin:function(){
for(x in this.arrHeight){
if(this.minHeight == this.arrHeight[x]){
return parseInt(x);
}
}
},
}
/**/
window.onload = function(){
/**/
function _time_(){
var curTime = new Date();
$("#time_").text(curTime.getHours()+":"+(curTime.getMinutes())+":"+curTime.getSeconds())
$("#date_").text(curTime.getFullYear()+"/"+(curTime.getMonth()+1)+"/"+curTime.getDate())
}
_time_();
setInterval(function(){_time_()},1000)
/*以上为时间函数,与正文无关*/
var ref = function(){ //瀑布流
var aa = new waterFall({
father : "scroll-box",
heightPdding : 10,
})
}
ref();
/*以下为iScroll函数所必要*/
var pullDownEl = document.getElementById("upRefresh");
pullDownOffset = pullDownEl.offsetHeight;
var pullUpEl = document.getElementById("downRefresh");
pullUpOffset = pullUpEl.offsetHeight; var myScroll = new iScroll("section",{
topOffset: pullDownOffset,
onRefresh: function () {
if (pullDownEl.className.match('loadIng')) {
pullDownEl.className = '';
pullDownEl.querySelector('.downSpan').innerHTML = '下拉刷新';
} else if (pullUpEl.className.match('loadIng')) {
pullUpEl.className = '';
pullUpEl.querySelector('.upSpan').innerHTML = '上拉加载';
}
},
onScrollMove: function () {
if (this.y > 5 && !pullDownEl.className.match('flip')) {
pullDownEl.className = 'flip';
pullDownEl.querySelector('.downSpan').innerHTML = '松手开始更新...';
this.minScrollY = 0;
} else if (this.y < 5 && pullDownEl.className.match('flip')) {
pullDownEl.className = '';
pullDownEl.querySelector('.downSpan').innerHTML = '下拉刷新...';
this.minScrollY = -pullDownOffset;
} else if (this.y < (this.maxScrollY - 5) && !pullUpEl.className.match('flip')) {
pullUpEl.className = 'flip';
pullUpEl.querySelector('.upSpan').innerHTML = '松手开始更新...';
this.maxScrollY = this.maxScrollY;
} else if (this.y > (this.maxScrollY + 5) && pullUpEl.className.match('flip')) {
pullUpEl.className = '';
pullUpEl.querySelector('.upSpan').innerHTML = '上拉加载更多...';
}
},
onScrollEnd: function () {
if (pullDownEl.className.match('flip')) {
pullDownEl.className = 'loadIng';
pullDownEl.querySelector('.downSpan').innerHTML = '加载中...';
pullDownAction(); // Execute custom function (ajax call?)
}
else if (pullUpEl.className.match('flip')) {
pullUpEl.className = 'loadIng';
pullUpEl.querySelector('.upSpan').innerHTML = '加载中...';
pullUpAction();
}
}
});
function pullDownAction () { //此函数应该是ajax请求函数,自行模拟
setTimeout(function () {
var el, li, i;
el = document.getElementById('scroll-box');
for(i=0;i<4;i++){
li = document.createElement('div');
li.className = "item";
li.innerHTML = '<img src="img/'+(i+1)+'.jpg">'
el.insertBefore(li,el.childNodes[0]);
}
ref(); //刷新瀑布流
myScroll.refresh(); //刷新iScroll
}, 1000);
}
function pullUpAction () { //此函数应该是ajax请求函数,自行模拟
setTimeout(function () {
var el, li, i;
el = document.getElementById('scroll-box');
for(i=0;i<4;i++){
li = document.createElement('div');
li.className = "item";
li.innerHTML = '<img src="img/'+(i+1)+'.jpg">'
el.appendChild(li,el.childNodes[0]);
}
ref(); //刷新瀑布流
myScroll.refresh(); //刷新iScroll
}, 1000);
}
}
这里要说明一个问题,就是当内容高度很小小于屏幕高度是时候不需要上拉刷新,所以我们直接去掉就好了。
复制以上代码就可以实现下拉刷新和上拉加载的模拟效果
iscroll.js 下拉刷新和上拉加载的更多相关文章
- android--------自定义控件ListView实现下拉刷新和上拉加载
开发项目过程中基本都会用到listView的下拉刷新和上滑加载更多,为了方便重写的ListView来实现下拉刷新,同时添加了上拉自动加载更多的功能. Android下拉刷新可以分为两种情况: 1.获取 ...
- H5下拉刷新和上拉加载实现原理浅析
前言 在移动端H5网页中,下拉刷新和上拉加载更多数据的交互方式出现频率很高,开源社区也有很多类似的解决方案,如iscroll,pulltorefresh.js库等.下面是对这两种常见交互基本实现原理的 ...
- Android 5.X新特性之为RecyclerView添加下拉刷新和上拉加载及SwipeRefreshLayout实现原理
RecyclerView已经写过两篇文章了,分别是Android 5.X新特性之RecyclerView基本解析及无限复用 和 Android 5.X新特性之为RecyclerView添加Header ...
- IOS 开发下拉刷新和上拉加载更多
IOS 开发下拉刷新和上拉加载更多 简介 1.常用的下拉刷新的实现方式 (1)UIRefreshControl (2)EGOTTableViewrefresh (3)AH3DPullRefresh ( ...
- IOS UITableView下拉刷新和上拉加载功能的实现
在IOS开发中UITableView是非常常用的一个功能,而在使用UITableView的时候我们经常要用到下拉刷新和上拉加载的功能,今天花时间实现了简单的UITableView的下拉刷新和上拉加载功 ...
- Android 使用PullToRefresh实现下拉刷新和上拉加载(ExpandableListView)
PullToRefresh是一套实现非常好的下拉刷新库,它支持: 1.ListView 2.ExpandableListView 3.GridView 4.WebView 等多种常用的需要刷新的Vie ...
- 使用PullToRefresh实现下拉刷新和上拉加载
使用PullToRefresh实现下拉刷新和上拉加载 分类: Android2013-12-20 15:51 78158人阅读 评论(91) 收藏 举报 Android下拉刷新上拉加载PullToRe ...
- 下拉刷新和上拉加载 Swift
转载自:http://iyiming.me/blog/2015/07/05/custom-refresh-and-loading/ 关于下拉刷新和上拉加载,项目中一直使用MJRefresh(原先还用过 ...
- 安卓开发笔记——关于开源组件PullToRefresh实现下拉刷新和上拉加载(一分钟搞定,超级简单)
前言 以前在实现ListView下拉刷新和上拉加载数据的时候都是去继承原生的ListView重写它的一些方法,实现起来非常繁杂,需要我们自己去给ListView定制下拉刷新和上拉加载的布局文件,然后添 ...
随机推荐
- javaweb 基于java Servlet登入 简单入门案例
项目流程 第一步:创建一个java webproject第二步:创建三个界面,1,login.jsp 2 success.jsp 3 fail.jsp第三步:更改新建界面编码格式,utf-8 默然编码 ...
- Theano Graph Structure
Graph Structure Graph Definition theano's symbolic mathematical computation, which is composed of: A ...
- 【基础】MVC路由规则
一.RouteData解析过程 在ASP.NET MVC中,服务器收到来自客户端的请求后,会经过一些列的处理拿到请求的数据,比如在Pipeline 管线事件中,通过订阅适当的事件,将HttpConte ...
- JVM:查看java内存情况命令
jmap (linux下特有,也是很常用的一个命令) 观察运行中的jvm物理内存的占用情况. 参数如下: -heap :打印jvm heap的情况 -histo: 打印jvm heap的直方图.其输出 ...
- 常用的数据统计Sql 总结
最近刚在搞一个BI的项目,里面需要大量的sql 数据统计相关运用,加深了我又对SQL的理解与使用. 所以,分享几个数据统计时常用的sql 语句总结: 1. 统计各个条件下的数据 select Batc ...
- hibernate中java类的成员变量类型如何映射到SQL中的数据类型变化
hibernate映射文件??.hbm.xml配置映射元素详解--Hibernate映射类型 在从Hibernate的java的成员类型映射到SQL中的数据类型,其内映射方式它满足,SQL可以自己调制 ...
- ReportView报表开发记录(一)
在公司开发,使用到ReportView技术,写下自己的经验. 1.在工具箱中找到 ReportViewer,ScriptManager放到test.aspx页面. 如果找不到报表项,请参考http:/ ...
- Eclipse 导入外部项目无法识别为web项目并且无法在部署到tomcat下
uss_web如果没有左上角那个球,tomcat就识别不出来的. 1.进入项目目录,找到.project文件,打开. 2.找到...代码段,加入如下标签内容并保存: <nature>org ...
- Android Studio开发Android应用如何签名
1.使用jdk自带的工具生成keystore 使用cmd命令行进入到jdk的bin目录(比如:C:\Program Files\Java\jdk1.7.0_01\bin) 运行如下命令: C:\Pro ...
- 关于es5的一些新方法
1.数组方法(1)isArray在之前我们判断数组类型的数据都是用instanceof来判断的,es5新增了对数组的判断,即Array.isArray()(2)every和some这两个方法一般用于对 ...