I want a simple Bootstrap 4 carousel which reveals a part of the next slide in the right . I found two questions similar to mine but didnt work out .Those links are
1)Bootstrap carousel reveal part of next slide
2)Bootstrap carousel show only part of the slide
I have tried creating a div near by with the next image src .This was a total mess .I dont go with any other libraries such as OWL carousel. I have attached below a simple bootstrap 4 carousel code with three image sliders.
<div id="carouselExampleSlidesOnly" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="..." alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="..." alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="..." alt="Third slide">
</div>
</div>
</div>
I need the next carousel item(quarter of it) to be displayed along with main carousel item