If you want 4 images to slider, you can add code js and change html to class col-lg-3 col-xs-3 col-md-3 col-sm-3:
js:
$('#myCarousel').carousel({
interval: 40000
});
$('.carousel .item').each(function() {
var next = $(this).next();
if (!next.length) {
next = $(this).siblings(':first');
}
next.children(':first-child').clone().appendTo($(this));
for (var i = 0; i < 2; i++) {
next = next.next();
if (!next.length) {
next = $(this).siblings(':first');
}
next.children(':first-child').clone().appendTo($(this));
}
});
doantutai (1) - 5 years ago - Reply 1
Or you want 4 images to slider , can to link:
https://www.bootply.com/94452
doantutai (1) - 5 years ago - Reply 0