Responsive carousel built with Tailwind. Carousel is a slideshow cycling through different elements such as photos, videos, or text.
Installation
Quick Start
In order to start using Tailwind simply download our starter.
Tailwind Elements does not change or add any CSS to the already one from TailwindCSS.
You can directly copy our components into your Tailwind design and they will work straight away.
In some dynamic components (like dropdowns or modals) we add Font Awesome icons and custom JavaScript. However, they do not require any additional installation, all the necessary code is always included in the example and copied to any Tailwind project - it will work.
MDB GO
Customization
Basic example
HTML
<!-- Required font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css" />
<style>
.carousel-open:checked+.carousel-item {
position: static;
opacity: 100;
}
.carousel-item {
-webkit-transition: opacity 0.6s ease-out;
transition: opacity 0.6s ease-out;
}
#carousel-1:checked~.control-1,
#carousel-2:checked~.control-2,
#carousel-3:checked~.control-3 {
display: block;
}
.carousel-indicators {
list-style: none;
margin: 0;
padding: 0;
position: absolute;
bottom: 2%;
left: 0;
right: 0;
text-align: center;
z-index: 10;
}
#carousel-1:checked~.control-1~.carousel-indicators li:nth-child(1) .carousel-bullet,
#carousel-2:checked~.control-2~.carousel-indicators li:nth-child(2) .carousel-bullet,
#carousel-3:checked~.control-3~.carousel-indicators li:nth-child(3) .carousel-bullet {
color: #2b6cb0;
/*Set to match the Tailwind colour you want the active one to be */
}
</style>
<div class="carousel relative rounded relative overflow-hidden shadow-xl">
<div class="carousel-inner relative overflow-hidden w-full">
<!--Slide 1-->
<input class="carousel-open" type="radio" id="carousel-1" name="carousel" aria-hidden="true" hidden=""
checked="checked">
<div class="carousel-item absolute opacity-0 bg-center" style="height:500px; background-image: url(https://mdbootstrap.com/img/new/slides/052.jpg)">
</div>
<label for="carousel-3"
class="control-1 w-10 h-10 ml-2 md:ml-10 absolute cursor-pointer hidden font-bold text-black hover:text-white rounded-full bg-white hover:bg-blue-700 leading-tight text-center z-10 inset-y-0 left-0 my-auto flex justify-center content-center"><i
class="fas fa-angle-left mt-3"></i></label>
<label for="carousel-2"
class="next control-1 w-10 h-10 mr-2 md:mr-10 absolute cursor-pointer hidden font-bold text-black hover:text-white rounded-full bg-white hover:bg-blue-700 leading-tight text-center z-10 inset-y-0 right-0 my-auto"><i
class="fas fa-angle-right mt-3"></i></label>
<!--Slide 2-->
<input class="carousel-open" type="radio" id="carousel-2" name="carousel" aria-hidden="true" hidden="">
<div class="carousel-item absolute opacity-0 bg-center" style="height:500px; background-image: url(https://mdbootstrap.com/img/new/slides/043.jpg)">
</div>
<label for="carousel-1"
class=" control-2 w-10 h-10 ml-2 md:ml-10 absolute cursor-pointer hidden font-bold text-black hover:text-white rounded-full bg-white hover:bg-blue-700 leading-tight text-center z-10 inset-y-0 left-0 my-auto"><i
class="fas fa-angle-left mt-3"></i></label>
<label for="carousel-3"
class="next control-2 w-10 h-10 mr-2 md:mr-10 absolute cursor-pointer hidden font-bold text-black hover:text-white rounded-full bg-white hover:bg-blue-700 leading-tight text-center z-10 inset-y-0 right-0 my-auto"><i
class="fas fa-angle-right mt-3"></i></label>
<!--Slide 3-->
<input class="carousel-open" type="radio" id="carousel-3" name="carousel" aria-hidden="true" hidden="">
<div class="carousel-item absolute opacity-0" style="height:500px; background-image: url(https://mdbootstrap.com/img/new/slides/054.jpg)">
</div>
<label for="carousel-2"
class="control-3 w-10 h-10 ml-2 md:ml-10 absolute cursor-pointer hidden font-bold text-black hover:text-white rounded-full bg-white hover:bg-blue-700 leading-tight text-center z-10 inset-y-0 left-0 my-auto"><i
class="fas fa-angle-left mt-3"></i></label>
<label for="carousel-1"
class="next control-3 w-10 h-10 mr-2 md:mr-10 absolute cursor-pointer hidden font-bold text-black hover:text-white rounded-full bg-white hover:bg-blue-700 leading-tight text-center z-10 inset-y-0 right-0 my-auto"><i
class="fas fa-angle-right mt-3"></i></label>
<!-- Add additional indicators for each slide-->
<ol class="carousel-indicators">
<li class="inline-block mr-3">
<label for="carousel-1"
class="carousel-bullet cursor-pointer block text-4xl text-white hover:text-blue-700">โข</label>
</li>
<li class="inline-block mr-3">
<label for="carousel-2"
class="carousel-bullet cursor-pointer block text-4xl text-white hover:text-blue-700">โข</label>
</li>
<li class="inline-block mr-3">
<label for="carousel-3"
class="carousel-bullet cursor-pointer block text-4xl text-white hover:text-blue-700">โข</label>
</li>
</ol>
</div>
</div>
You can see more customization examples on the ๐ Carousel documentation page
Crucial Resources
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.
- After finishing the project you can publish it with CLI in order to receive ๐ฝ Free hosting (beta)
Related Components options & features
- Accordion
- Alerts
- Badges
- Button group
- Buttons
- Cards
- Charts
- Chips
- Dropdown
- Gallery
- Headings
- Images
- List group
- Modal
- Paragraphs
- Popover
- Progress
- Rating
- Spinners
- Stepper
- Tables
- Template
- Toast
- Tooltip
Additional resources
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
Support creation of open-source packages with a STAR on GitHub
Top comments (0)