标签:des style blog http io ar color sp on
关于触摸滑动的网上有比较多的插件,我找了一个比较好用的插件,给大家分享下。
http://stephband.info/jquery.event.swipe/
通过引入两个文件就可以在手机web页面上实现触摸滑动操作了(文件在github里面,jquery.event.move.js和jQuery.event.swipe.js)
用法:
var slides = jQuery(‘.slides‘),
i = 0;
slides
.on(‘swipeleft‘, function(e) {
slides.eq(i + 1).addClass(‘active‘);
})
.on(‘swiperight‘, function(e) {
slides.eq(i - 1).addClass(‘active‘);
});
标签:des style blog http io ar color sp on
原文地址:http://www.cnblogs.com/JAYIT/p/4151290.html