1.首先引用必须的文件
<link rel="stylesheet" href="pullToRefresh.css"/>
<script src="pullToRefresh.js"></script> <script src="colorful.js"></script>
2.加入需要的html,结构如下
<div id="wrapper"> <ul> <li>row 10</li> <li>row 9</li> <li>row 8</li> <li>row 7</li> <li>row 6</li> <li>row 5</li> <li>row 4</li> <li>row 3</li> <li>row 2</li> <li>row 1</li> </ul> </div>
3.初始化插件
refresher.init({ id:"wrapper", pullDownAction:Refresh, pullUpAction:Load }); function Refresh() { // <-- Simulate network congestion, remove setTimeout from production! wrapper.refresh();/****remember to refresh after action completed! --example-yourId.refresh(); ----| ****/ } function Load() { // <-- Simulate network congestion, remove setTimeout from production! wrapper.refresh();/****remember to refresh after action completed!!! -example--yourId.refresh(); --- ****/ }
我想问下,此功能, 能不能用在同一页面不同栏目之间切换,上拉刷新吗?
我先问下上拉下拉我都发现 只要我触发动作就会刷新,我拖动下拉上拉界面出现,再移动回去还是触发上拉下拉事件,还有refresh3.0首次进入往上滑动一点都会触发加载更多页面还出现卡顿现象 ,我就不明白难道你测试都没发现吗
回复