I can't figure out how to make it show 4 images instead of 3.
Based on this Code: Bootstrap 4 Multiple Item Carousel
Script JS
$('#recipeCarousel').carousel({
interval: 10000
})
$('.carousel .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));
}
});
CSS
.carousel-inner .carousel-item-right.active,
.carousel-inner .carousel-item-next {
transform: translateX(25%);
}
.carousel-inner .carousel-item-left.active,
.carousel-inner .carousel-item-prev {
transform: translateX(-25%)
}
.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left{
transform: translateX(0);
}
and I've changed to this code
<div class="carousel-item col-md-3">
instead of this original code
<div class="carousel-item col-md-4">
Since 4 cols, are 25% width (instead of 33%) change the CSS:
Also an additional item needs to be cloned into each slide. So the JS change is:
Bootstrap 4.0.0 Demo - 4 slides, advance 1
Note: From alpha 6 (when the original question was asked) to Bootstrap 4.0.0, the active carousel-item changed to flexbox. Therefore, the same must be done for the neighboring items in the multi-carousel.
Also see: Bootstrap 4.1.0 (advance all 4 at once)