您可以在JavaScript中這樣的改變:
$(document).ready(function() {
$('#myCarousel').carousel({
interval: 10000
})
$('.fdi-Carousel .item').each(function() {
var next = $(this).next();
if (!next.length) {
next = $(this).siblings(':first');
}
next.children(':first-child').clone().appendTo($(this));
if (next.next().length > 0) {
next.next().children(':first-child').clone().appendTo($(this));
}
else {
$(this).siblings(':first').children(':first-child').clone().appendTo($(this));
}
if (next.next().next().length > 0) {
next.next().next().children(':first-child').clone().appendTo($(this));
}
else {
$(this).siblings(':first').children(':first-child').clone().appendTo($(this));
}
if (next.next().next().next().length > 0) {
next.next().next().next().children(':first-child').clone().appendTo($(this));
}
else {
$(this).siblings(':first').children(':first-child').clone().appendTo($(this));
}
});
});
這5個圖像工作。如果你想要它像6個以上的5個圖像,然後再添加一個if-else
條件。
if (next.next().next().next().next().length > 0) {
next.next().next().next().next().children(':first-child').clone().appendTo($(this));
}
else {
$(this).siblings(':first').children(':first-child').clone().appendTo($(this));
}
因爲它計算了它的兄弟姐妹的長度。
這是工作代碼爲6個圖像與div大小col-md-2
您能否提供實時預覽? –
請儘快重新申請。 –
實時預覽意味着?檢查上面的鏈接並在html中,只需將col-md-4更改爲col-md-2,即可獲得預覽。 –