I have implemented a Bootstrap-5 Carousel Slide Show for the website banner. It is functioning correctly in Google Chrome, but there seems to be an issue when viewed in Firefox. The Firefox browser version I am using is 90.0.2 (64-bit). Upon inspecting the code, the slide code is rotating, indicating that the banner slide is moving, but there seems to be a visibility problem or a browser compatibility issue.
I have already integrated the bootstrap-5 CSS file from the template - bootstrap.min.css, along with the Bootstrap Bundle with Popper file - bootstrap.bundle.min.js
I have attached snapshots of both browsers (Firefox and Chrome) for reference.
Firefox Snapshot -
https://i.sstatic.net/rF48r.png
Google Chrome Snapshot
https://i.sstatic.net/93MTQ.jpg
<div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false">
<div class="snippet-code">
<pre class="snippet-code-html lang-html prettyprint-override"><code> <!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Testing</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="0a6865657e797e786b7a4a3f243a2438">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<!-- ======= Headr Banner Section Starts======= -->
<section>
<div class="HomePageBannerr">
<div id="carouselExampleFade" class="carousel slide carousel-fade" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/banner/CSIR-NET-2020-Students-Results.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/banner/CSIR-UGC-NET-JRF-Dec-2019-Student-Results-Banner.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/banner/GATE-2021-Student-Results.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/banner/Gate-March-2020-Student-Results-Banner.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/banner/IIT-JAM-2021-Student-Results.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/banner/JAM--2020-Student-Results.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="img/banner/Student-Banner-CSIR-NET-Results-2019.jpg" class="d-block w-100" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleFade" data-bs-slide="prev">
<span aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleFade" data-bs-slide="next">
<span aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="93f1fcfce7e0e7e1f2e3d3a6bda3bda1">[email protected]</a>/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>