15
Bootstrap 5 Carousel
Carousel is a slideshow cycling through different elements such as photos, videos, or text.
To take advantage of our Bootstrap images component and use them in your project, you first need to install the MDB 5 Free package
Watch our Quick Start Tutorial to discover and use the full potential of MDB 5 and MDB CLI
Before starting the project make sure to install Node LTS (12.x.x recommended).
To install MDB UI KIT in your project easily type the following command in the terminal:
npm i mdb-ui-kit
You can import the entire library or just individual modules:
import * as mdb from 'mdb-ui-kit'; // lib
import { Input } from 'mdb-ui-kit'; // module
To import MDB stylesheet please use the following syntax:
@import '~mdb-ui-kit/css/mdb.min.css';
You can also import individual SCSS modules. To do it properly, we recommend to copy them from the node_modules/mdb-ui-kit/src/scss location directly to your project and import in the same way as CSS files.
You can significantly speed up the process of creating a new project based on Webpack using our Starter.
Installation via CDN is one of the easiest methods of integrating MDB UI KIT with your project. Just copy the latest compiled JS script tag and CSS link tag from cdnjs to the application.
Don't forget to add also Font Awesome and Roboto font if you need. Here's an example code:
<!-- Font Awesome -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
rel="stylesheet"
/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
rel="stylesheet"
/>
<!-- MDB -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.3.0/mdb.min.css"
rel="stylesheet"
/>
<!-- MDB -->
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.3.0/mdb.min.js"
></script>
<!-- Carousel wrapper -->
<div
id="carouselBasicExample"
class="carousel slide carousel-fade"
data-mdb-ride="carousel"
>
<!-- Indicators -->
<div class="carousel-indicators">
<button
type="button"
data-mdb-target="#carouselBasicExample"
data-mdb-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-mdb-target="#carouselBasicExample"
data-mdb-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-mdb-target="#carouselBasicExample"
data-mdb-slide-to="2"
aria-label="Slide 3"
></button>
</div>
<!-- Inner -->
<div class="carousel-inner">
<!-- Single item -->
<div class="carousel-item active">
<img
src="https://mdbootstrap.com/img/Photos/Slides/img%20(15).jpg"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>First slide label</h5>
<p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
</div>
</div>
<!-- Single item -->
<div class="carousel-item">
<img
src="https://mdbootstrap.com/img/Photos/Slides/img%20(22).jpg"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>Second slide label</h5>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<!-- Single item -->
<div class="carousel-item">
<img
src="https://mdbootstrap.com/img/Photos/Slides/img%20(23).jpg"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>Third slide label</h5>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur.</p>
</div>
</div>
</div>
<!-- Inner -->
<!-- Controls -->
<button
class="carousel-control-prev"
type="button"
data-mdb-target="#carouselBasicExample"
data-mdb-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-mdb-target="#carouselBasicExample"
data-mdb-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- Carousel wrapper -->
Here’s a carousel with slides only. Note the presence of the .d-block
and .w-100
on carousel images to prevent browser default image alignment.
<div id="carouselExampleSlidesOnly" class="carousel slide" data-mdb-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="https://mdbootstrap.com/img/new/slides/041.jpg"
class="d-block w-100"
alt="..."
/>
</div>
<div class="carousel-item">
<img
src="https://mdbootstrap.com/img/new/slides/042.jpg"
class="d-block w-100"
alt="..."
/>
</div>
<div class="carousel-item">
<img
src="https://mdbootstrap.com/img/new/slides/043.jpg"
class="d-block w-100"
alt="..."
/>
</div>
</div>
</div>
You can see more customization examples on the 📄 Carousel documentation page
Here are the resources that we have prepared to help you work with this component:
- Read 📄 Carousel documentation page <-- start here
- In to get the most out of your project, you should also get acquainted with other Components options related to Carousel. See the section below to find the list of them.
- You can use predesigned Components in 📥 Starter Bootstrap 5 templates
- Templates are a part of 📦 Free UI Kit for Bootstrap 5
- After finishing the project you can publish it with CLI in order to receive 💽 Free hosting (beta)
Learn web development with our learning roadmap:
🎓 Start Learning
Join our mailing list & receive exclusive resources for developers
🎁 Get gifts
Join our private FB group for inspiration & community experience
👨👩👧👦 Ask to join
15