I recently started using the amazing swiper slider plugin available here
My goal is to replicate the demo-no-210 from that repository.
Here is the code snippet I am working with:
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="css/swiper.min.css">
<link rel="stylesheet" href="css/app.css">
<!-- Styles for swiper slider -->
home.html
<div>
<div class="swiper-container">
<!-- Swiper content goes here -->
</div>
</div>
Despite my efforts, I am currently facing an issue where only the first slide is being displayed and the navigation arrows are not functional. The outcome I am experiencing is as shown in this https://i.sstatic.net/6v6UO.png
My ultimate goal is to achieve a layout with multiple sliders similar to what is depicted https://i.sstatic.net/Uimra.png
Any suggestions or insights on what might be causing this problem?