移动端微型 swiper 插件,小而美,无依赖.
mSwiper 相对于其他的 swiper 插件而言,最大的优势就是 小,压缩后仅 1.2k ,能满足部分开发需求。插件的开发采用 组合使用构造函数模式和原型模式,通过 Gulp 构建,感兴趣的可以阅读源码🦄。欢迎 star 🌟
若有问题,请提 issue
# 克隆本仓库
git clone https://github.com/JohnsenZhou/mSwiper.js.git
# 进入仓库目录
cd mSwiper.js
# 安装依赖
npm install
# 启动项目,本地浏览地址 => localhost:8080
gulp
# 打包压缩
gulp build
前往 release 下载所需版本。
<ul id="selector">
<li>
<img src="./img/1.jpg">
</li>
<li>
<img src="./img/2.jpg">
</li>
<li>
<img src="./img/3.jpg">
</li>
<li>
<img src="./img/4.jpg">
</li>
<li>
<img src="./img/5.jpg">
</li>
</ul>
<script src="../src/mSwiper.js"></script>
<script>
var options = {
selector: "#selector", // 节点选择
isAutoPlay: true, // 是否自动播放
autoPlayTime: 3000, // 设置自动播放时间
}
var mSwiper = new mSwiper(options);
</script>
mSwiper 同时也支持 AMD
规范,你可以通过 require.js
进行加载使用:
require(['mSwiper'], function(mSwiper) {
var options = {
selector: "#selector", // 节点选择
isAutoPlay: true, // 是否自动播放
autoPlayTime: 3000, // 设置自动播放时间
}
var mSwiper = new mSwiper(options);
})
options
具体参数:
| 参数 | 类型 | 默认值 | 功能描述 | | ------------- |:-------------:| -----:| -----:| | selector | string | #selector | 容器选择器 | | isAutoPlay | bool | false| 是否自动播放 | | isManual | bool | false | 是否支持手指滑动 | | autoPlayTime | number | 5000 | 自动播放间隔时间 | | goDirection | string | left | 自动播放方向(left&right) |
MIT License
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.