Bootstrap Carousel
-
Pro Component
The Bootstrap carousel is a slideshow component for cycling through elements—images or slides of text—like a carousel.
Example
<div class= "row" >
<div class= "col-md-8 mx-auto" >
<div id= "carouselExampleIndicators" class= "carousel slide mb-3" data-bs-ride= "carousel" >
<div class= "carousel-indicators" >
<button type= "button" data-bs-target= "#carouselExampleIndicators" data-bs-slide-to= "0" class= "active" aria-current= "true" aria-label= "Slide 1" ></button>
<button type= "button" data-bs-target= "#carouselExampleIndicators" data-bs-slide-to= "1" aria-label= "Slide 2" ></button>
<button type= "button" data-bs-target= "#carouselExampleIndicators" data-bs-slide-to= "2" aria-label= "Slide 3" ></button>
</div>
<div class= "carousel-inner border-radius-sm" >
<div class= "carousel-item active" >
<img class= "d-block w-100" src= "https://demos.creative-tim.com/now-ui-design-system-pro/assets/img/bg1.jpg" alt= "First slide" />
</div>
<div class= "carousel-item" >
<img class= "d-block w-100" src= "https://demos.creative-tim.com/now-ui-design-system-pro/assets/img/bg3.jpg" alt= "Second slide" />
</div>
<div class= "carousel-item" >
<img class= "d-block w-100" src= "https://demos.creative-tim.com/now-ui-design-system-pro/assets/img/bg4.jpg" alt= "Third slide" />
</div>
</div>
<button class= "carousel-control-prev" type= "button" data-bs-target= "#carouselExampleIndicators" data-bs-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-bs-target= "#carouselExampleIndicators" data-bs-slide= "next" >
<span class= "carousel-control-next-icon" aria-hidden= "true" ></span>
<span class= "visually-hidden" > Next</span>
</button>
</div>
</div>
</div>
Example PRO
Netflix's 'Shuffle Play' feature
The Arctic Ocean freezes every winter and much of the sea-ice then thaws every summer, and that process will continue whatever.
More about us
Brave web browser
The Arctic Ocean freezes every winter and much of the sea-ice then thaws every summer, and that process will continue whatever.
More about us
Netflix's 'Shuffle Play' feature
The Arctic Ocean freezes every winter and much of the sea-ice then thaws every summer, and that process will continue whatever.
Learn more
Brave web browser
The Arctic Ocean freezes every winter and much of the sea-ice then thaws every summer, and that process will continue whatever.
Learn more
Netflix's 'Shuffle Play' feature
The Arctic Ocean freezes every winter and much of the sea-ice then thaws every summer, and that process will continue whatever.
More about us
Brave web browser
The Arctic Ocean freezes every winter and much of the sea-ice then thaws every summer, and that process will continue whatever.
More about us
<div class= "carousel-item" >
<img src= "..." alt= "..." >
<div class= "carousel-caption d-none d-md-block" >
<h5> ...</h5>
<p> ...</p>
</div>
</div>