码迷,mamicode.com
首页 > 移动开发 > 详细

swipe.js 轻松实现手机端滑动效果

时间:2014-11-20 00:00:36      阅读:533      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   io   ar   color   os   使用   

插件下载地址

官网:http://www.swipejs.com
github:https://github.com/bradbirdsall/Swipe

 

插件特色

swipe.js是一个比较有名的触摸滑动插件,它能够处理内容滑动,支持自定义选项,你可以让它自动滚动,控制滚动间隔,返回回调函数等。经常可见使用在移动开发

 

使用方法

HTML代码如下:
<div id=‘slider‘ class=‘swipe‘>
  <div class=‘swipe-wrap‘>
    <div></div>
    <div></div>
    <div></div>
  </div>
</div>

CSS代码如下:
.swipe {
 overflow: hidden;
  visibility: hidden;
  position: relative;
}
.swipe-wrap {
  overflow: hidden;
  position: relative;
}
.swipe-wrap > div {
  float:left;
  width:100%;
  position: relative;
}
JS代码:
window.mySwipe = Swipe(document.getElementById(‘slider‘));

 

实例

window.mySwipe = new Swipe(document.getElementById(‘slider‘), {
  startSlide: 2,
  speed: 400,
  auto: 3000,
  continuous: true,
  disableScroll: false,
  stopPropagation: false,
  callback: function(index, elem) {},
  transitionEnd: function(index, elem) {}
});

 

设置选项

  • startSlide Integer (default:0) - 开始滚动的位置
  • speed Integer (default:300) - 动画滚动的间隔(秒数)
  • auto Integer - 开始自动幻灯片(以毫秒为单位幻灯片之间的时间)
  • continuous Boolean (default:true) - 创建一个无限的循环(当滑动到所有动画结束时是否循环滑动)
  • disableScroll Boolean (default:false) - 当滚动滚动条时是否停止幻灯片滚动
  • stopPropagation Boolean (default:false) - 是否停止事件冒泡
  • callback Function - 幻灯片运行中的回调函数
  • transitionEnd Function - 动画运行结束的回调函数

还有一些比较使用的API方法,例如:

  • prev():上一页
  • next():下一页
  • getPos():获取当前页的索引
  • getNumSlides():获取所有项的个数
  • slide(index, duration):滑动方法

 

相关上下滑动插件:

iscroll.js

swipe.js 轻松实现手机端滑动效果

标签:des   style   blog   http   io   ar   color   os   使用   

原文地址:http://www.cnblogs.com/zion0707/p/4109484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!