如何制作bootstrap carousel touch slide?

时间:2014-02-28 03:04:31

标签: jquery twitter-bootstrap twitter-bootstrap-3 carousel

你如何制作自举旋转木马滑动?

有办法吗?调整该代码以使手指交换幻灯片?

以下是carousel

2 个答案:

答案 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');
});