Finder component

Carousel (Slider)

A slideshow component for cycling through elements (images or slides with various content) like a carousel.

The Carousel component relies on the Swiper plugin. To use a carousel, make sure to include the required reference to the plugin's .css and .js files.

CSS file is linked in the <head> section and above theme.min.css reference in your document:

<link rel="stylesheet" href="assets/vendor/swiper/swiper-bundle.min.css">

JavaScript file is linked before the closing </body> tag and above theme.min.js reference in your document:

<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>

You can apply virtually any slider option by specifying it within the data-swiper="{}" attribute in JSON format.

Usefull links:
Top