1. 程式人生 > >解決bootstrap中輪播外掛支援手機上的手勢滑動的問題

解決bootstrap中輪播外掛支援手機上的手勢滑動的問題

解決途徑:

在頁面中新增

 <script type="text/javascript" src="jquery/1.7.2/jquery.touchSwipe.min.js"></script>
對應js程式碼如下:
<pre class="html" name="code"> $(function() {
   $('#myCarousel').swipe({
      swipeLeft: function() { $(this).carousel('next'); },
      swipeRight: function() { $(this).carousel('prev'); },
    });
	})