2017-10-06 32 views

回答

0

我有同樣的問題,我發現這個簡單的jQuery插件TouchSwipe,它允許你做到這一點。您只需下載插件並鏈接到它在你的頭上,然後將下面的代碼添加到您的HTML文件的底部:

<script> 
$(document).ready(function() { 
    //Enable swiping... 
    $(".carousel-inner").swipe({ 
     //Generic swipe handler for all directions 
     swipeLeft:function(event, direction, distance, duration, fingerCount) { 
      $(this).parent().carousel('prev'); 
     }, 
     swipeRight: function() { 
      $(this).parent().carousel('next'); 
     }, 
     //Default is 75px, set to 0 for demo so any distance triggers swipe 
     threshold:0 
    }); 
}); 
</script>