1
我試圖在bootstrap 4旋轉木馬(ngb-carousel)中添加滑動配置。但它似乎還沒有實施。那麼有沒有其他方法可以在bootstrap 4旋轉木馬中實現滑動?Bootstrap 4旋轉木馬滑動配置丟失
我試圖在bootstrap 4旋轉木馬(ngb-carousel)中添加滑動配置。但它似乎還沒有實施。那麼有沒有其他方法可以在bootstrap 4旋轉木馬中實現滑動?Bootstrap 4旋轉木馬滑動配置丟失
我有同樣的問題,我發現這個簡單的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>
沒有你發現任何選項來觸發揮筆旋轉木馬? – godblessstrawberry