I'm currently in the process of creating my own portfolio website. I've integrated a Carousel feature inspired by Bootstrap's example. However, I've noticed some glitches in the transitions between the first or second slides and the third slide, where the images overlap with the next or previous slide. This issue is more noticeable in the mobile version of the website.
You can view the website here: to see the problem firsthand.
Is there a solution to fix this issue? Thank you in advance for any help!
Edit:
The problematic sections are as follows:
<div class="carousel-inner">
<div class="carousel-item active">
<img class="image-1" src="images/main-jumbotron-small.png" alt="Main Carousel">
<div class="container">
<div class="carousel-caption text-start">
<h1>Hi, I'm Esteban</h1>
<p>Engineer, leader and innovator. Click here to know more about me!</p>
<p><a class="btn btn-lg btn-primary" href="about.html">About Me</a></p>
</div>
</div>
</div>
<div class="carousel-item">
<img class="image-2" src="images/carousel2.jpg" class="cover" alt="Carousel 2">
<div class="container">
<div class="carousel-caption">
<h1>Deep Learning and Cancer</h1>
<p>One of my current research projects. Check it out!</p>
<p><a class="btn btn-lg btn-primary" href="#">Learn more</a></p>
</div>
</div>
</div>
<div class="carousel-item">
<img class="image-3" src="images/carousel3.jpg" class="cover" alt;"Carousel 3">
<div class="container">
<div class="carousel-caption text-end">
<h1>Want to know more about my work?</h1>
<p>Go ahead and click here to check my experience.</p>
<p><a class="btn btn-lg btn-primary" href="#">My Experience</a></p>
</div>
</div>
</div>
</div>
The issue I'm facing is specifically with the last carousel slide (the last .carousel-item). I haven't made significant modifications to the CSS related to the carousel in the Bootstrap files besides adjusting the image opacity in the slides.