答案 0 :(得分:8)
下载jQuery&来自http://jquery.com/和http://jquerymobile.com/
的jQuery移动库在您的网站中包含jQuery移动库
jQuery移动库为您提供触摸支持。您可以添加以下代码
$(document).ready(function() {
$("#bsCarousel").swiperight(function() {
$("#bsCarousel").carousel('prev');
});
$("#bsCarousel").swipeleft(function() {
$("#bsCarousel").carousel('next');
});
});
答案 1 :(得分:-1)
对于所有使用类:
使用Hammer.js
https://github.com/hammerjs/hammer.js
和jquery.hammer.js
https://github.com/hammerjs/jquery.hammer.js
$('.carousel').hammer().bind('swipeleft', function (event) {
$(event.target).carousel('next');
});
$('.carousel').hammer().bind('swiperight', function (event) {
$(event.target).carousel('prev');
});