Carousel

The carousel is a slideshow for cycling through a series of content, built with CSS 3D transforms and a bit of JavaScript. It works with a series of images, text, or custom markup. It also includes support for previous/next controls and indicators. View more demo

<div class="carousel slide" data-bs-ride="carousel">
	<div class="carousel-inner">
		<div class="carousel-item active">
			<img src="../assets/images/gallery/16.jpg" class="d-block w-100 rounded" alt="...">
		</div>
		<div class="carousel-item">
			<img src="../assets/images/gallery/17.jpg" class="d-block w-100 rounded" alt="...">
		</div>
		<div class="carousel-item">
			<img src="../assets/images/gallery/18.jpg" class="d-block w-100 rounded" alt="...">
		</div>
	</div>
</div>
Basic Example
With controls

Adding in the previous and next controls. We recommend using <button> elements, but you can also use <a> elements with role="button".

With indicators

You can also add the indicators to the carousel, alongside the controls, too.

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.

Template Setting
Set Theme Color
Icon Border Stroke
Layout Section Ligh/Dark
More App Setting