asp.net mvc - Making a Bootstrap 4 multi image carousel slider -
i working bootstrap 4 carousel slider , instead of having scroll 3 images @ time trying have scroll 4 images @ time. how best go making happen? , have bootstrap 4 also. thanks!
https://www.codeply.com/go/s3i9ivcbyh/multi-carousel-single-slide-bootstrap-4
bootstrap carousel uses div each slide. mean can insert more images inside each slide proper sizing.
<div class="carousel-item"> <img class="" src="http://placebeard.it/g/640/480" alt="first slide"> <img class="" src="http://placebeard.it/g/640/480" alt="first slide"> <img class="" src="http://placebeard.it/g/640/480" alt="first slide"> <img class="" src="http://placebeard.it/g/640/480" alt="first slide"> </div>
here's working sample in codepen : https://codepen.io/asimaley/full/rzvglr
Comments
Post a Comment