Carousel
A slideshow component for cycling through elements—images or slides of text—like a carousel.
Bootstrap Documentation
Example
Carousels don’t automatically normalize slide dimensions. As such, you may need to use additional utilities or custom styles to appropriately size content. While carousels support previous/next controls and indicators, they’re not explicitly required. Add and customize as you see fit.
The .active
class needs to be added to one of the slides otherwise the carousel will not be visible. Also be sure to set a unique id on the .carousel
for optional controls, especially if you’re using multiple carousels on a single page. Control and indicator elements must have a data-target
attribute (or href
for links) that matches the id of the .carousel
element.
Slides only
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.
Placeholder
First slide
Placeholder
Second slide
Placeholder
Third slide
<div id= "carouselExampleSlidesOnly" class= "carousel slide" data-ride= "carousel" >
<div class= "carousel-inner" >
<div class= "carousel-item active" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: First slide" ><title> Placeholder</title><rect fill= "#777" width= "100%" height= "100%" /><text fill= "#555" dy= ".3em" x= "50%" y= "50%" > First slide</text></svg>
</div>
<div class= "carousel-item" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: Second slide" ><title> Placeholder</title><rect fill= "#666" width= "100%" height= "100%" /><text fill= "#444" dy= ".3em" x= "50%" y= "50%" > Second slide</text></svg>
</div>
<div class= "carousel-item" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: Third slide" ><title> Placeholder</title><rect fill= "#555" width= "100%" height= "100%" /><text fill= "#333" dy= ".3em" x= "50%" y= "50%" > Third slide</text></svg>
</div>
</div>
</div>
With controls
Adding in the previous and next controls:
Placeholder
First slide
Placeholder
Second slide
Placeholder
Third slide
Previous
Next
<div id= "carouselExampleControls" class= "carousel slide" data-ride= "carousel" >
<div class= "carousel-inner" >
<div class= "carousel-item active" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: First slide" ><title> Placeholder</title><rect fill= "#777" width= "100%" height= "100%" /><text fill= "#555" dy= ".3em" x= "50%" y= "50%" > First slide</text></svg>
</div>
<div class= "carousel-item" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: Second slide" ><title> Placeholder</title><rect fill= "#666" width= "100%" height= "100%" /><text fill= "#444" dy= ".3em" x= "50%" y= "50%" > Second slide</text></svg>
</div>
<div class= "carousel-item" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: Third slide" ><title> Placeholder</title><rect fill= "#555" width= "100%" height= "100%" /><text fill= "#333" dy= ".3em" x= "50%" y= "50%" > Third slide</text></svg>
</div>
</div>
<a class= "carousel-control-prev" href= "#carouselExampleControls" role= "button" data-slide= "prev" >
<span class= "carousel-control-prev-icon" aria-hidden= "true" ></span>
<span class= "sr-only" > Previous</span>
</a>
<a class= "carousel-control-next" href= "#carouselExampleControls" role= "button" data-slide= "next" >
<span class= "carousel-control-next-icon" aria-hidden= "true" ></span>
<span class= "sr-only" > Next</span>
</a>
</div>
With indicators
You can also add the indicators to the carousel, alongside the controls, too.
Placeholder
First slide
Placeholder
Second slide
Placeholder
Third slide
Previous
Next
<div id= "carouselExampleIndicators" class= "carousel slide" data-ride= "carousel" >
<ol class= "carousel-indicators" >
<li data-target= "#carouselExampleIndicators" data-slide-to= "0" class= "active" ></li>
<li data-target= "#carouselExampleIndicators" data-slide-to= "1" ></li>
<li data-target= "#carouselExampleIndicators" data-slide-to= "2" ></li>
</ol>
<div class= "carousel-inner" >
<div class= "carousel-item active" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: First slide" ><title> Placeholder</title><rect fill= "#777" width= "100%" height= "100%" /><text fill= "#555" dy= ".3em" x= "50%" y= "50%" > First slide</text></svg>
</div>
<div class= "carousel-item" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: Second slide" ><title> Placeholder</title><rect fill= "#666" width= "100%" height= "100%" /><text fill= "#444" dy= ".3em" x= "50%" y= "50%" > Second slide</text></svg>
</div>
<div class= "carousel-item" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: Third slide" ><title> Placeholder</title><rect fill= "#555" width= "100%" height= "100%" /><text fill= "#333" dy= ".3em" x= "50%" y= "50%" > Third slide</text></svg>
</div>
</div>
<a class= "carousel-control-prev" href= "#carouselExampleIndicators" role= "button" data-slide= "prev" >
<span class= "carousel-control-prev-icon" aria-hidden= "true" ></span>
<span class= "sr-only" > Previous</span>
</a>
<a class= "carousel-control-next" href= "#carouselExampleIndicators" role= "button" data-slide= "next" >
<span class= "carousel-control-next-icon" aria-hidden= "true" ></span>
<span class= "sr-only" > Next</span>
</a>
</div>
With captions
Add captions to your slides easily with the .carousel-caption
element within any .carousel-item
. They can be easily hidden on smaller viewports, as shown below, with optional display utilities . We hide them initially with .d-none
and bring them back on medium-sized devices with .d-md-block
.
Placeholder
First slide
First slide label
Nulla vitae elit libero, a pharetra augue mollis interdum.
Placeholder
Second slide
Second slide label
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Placeholder
Third slide
Third slide label
Praesent commodo cursus magna, vel scelerisque nisl consectetur.
Previous
Next
<div class= "bd-example" >
<div id= "carouselExampleCaptions" class= "carousel slide" data-ride= "carousel" >
<ol class= "carousel-indicators" >
<li data-target= "#carouselExampleCaptions" data-slide-to= "0" class= "active" ></li>
<li data-target= "#carouselExampleCaptions" data-slide-to= "1" ></li>
<li data-target= "#carouselExampleCaptions" data-slide-to= "2" ></li>
</ol>
<div class= "carousel-inner" >
<div class= "carousel-item active" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: First slide" ><title> Placeholder</title><rect fill= "#777" width= "100%" height= "100%" /><text fill= "#555" dy= ".3em" x= "50%" y= "50%" > First slide</text></svg>
<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>
<div class= "carousel-item" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: Second slide" ><title> Placeholder</title><rect fill= "#666" width= "100%" height= "100%" /><text fill= "#444" dy= ".3em" x= "50%" y= "50%" > Second slide</text></svg>
<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>
<div class= "carousel-item" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: Third slide" ><title> Placeholder</title><rect fill= "#555" width= "100%" height= "100%" /><text fill= "#333" dy= ".3em" x= "50%" y= "50%" > Third slide</text></svg>
<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>
<a class= "carousel-control-prev" href= "#carouselExampleCaptions" role= "button" data-slide= "prev" >
<span class= "carousel-control-prev-icon" aria-hidden= "true" ></span>
<span class= "sr-only" > Previous</span>
</a>
<a class= "carousel-control-next" href= "#carouselExampleCaptions" role= "button" data-slide= "next" >
<span class= "carousel-control-next-icon" aria-hidden= "true" ></span>
<span class= "sr-only" > Next</span>
</a>
</div>
</div>
Crossfade
Add .carousel-fade
to your carousel to animate slides with a fade transition instead of a slide.
Placeholder
First slide
Placeholder
Second slide
Placeholder
Third slide
Previous
Next
<div id= "carouselExampleFade" class= "carousel slide carousel-fade" data-ride= "carousel" >
<div class= "carousel-inner" >
<div class= "carousel-item active" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: First slide" ><title> Placeholder</title><rect fill= "#777" width= "100%" height= "100%" /><text fill= "#555" dy= ".3em" x= "50%" y= "50%" > First slide</text></svg>
</div>
<div class= "carousel-item" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: Second slide" ><title> Placeholder</title><rect fill= "#666" width= "100%" height= "100%" /><text fill= "#444" dy= ".3em" x= "50%" y= "50%" > Second slide</text></svg>
</div>
<div class= "carousel-item" >
<svg class= "bd-placeholder-img bd-placeholder-img-lg d-block w-100" width= "800" height= "400" xmlns= "http://www.w3.org/2000/svg" preserveAspectRatio= "xMidYMid slice" focusable= "false" role= "img" aria-label= "Placeholder: Third slide" ><title> Placeholder</title><rect fill= "#555" width= "100%" height= "100%" /><text fill= "#333" dy= ".3em" x= "50%" y= "50%" > Third slide</text></svg>
</div>
</div>
<a class= "carousel-control-prev" href= "#carouselExampleFade" role= "button" data-slide= "prev" >
<span class= "carousel-control-prev-icon" aria-hidden= "true" ></span>
<span class= "sr-only" > Previous</span>
</a>
<a class= "carousel-control-next" href= "#carouselExampleFade" role= "button" data-slide= "next" >
<span class= "carousel-control-next-icon" aria-hidden= "true" ></span>
<span class= "sr-only" > Next</span>
</a>
</div>