I am using this carousel.
I want something like the multiple-item carousel here.
I tried following this tutorial but it ends up breaking my website and causes many errors.
What I have tried:
<ngb-carousel *ngIf="images">
<ng-template ngbSlide>
<div class="row">
<div class="item card col-md-3" *ngFor="let image of images">
<img src="{{image.picture}}" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
</ng-template>
</ngb-carousel>
It does not achieve what I want. I want 2 or 3 items on the same row that you can slide through. How would you go about achieving this with Angular Bootstrap Carousel?
My last resort is paying for the MDB library. Your help will be much appreciated. Thanks.