Infinite Content Carousel Slider Plugin For jQuery - Free Download Infinite Content Carousel / Slider Plugin For jQuery

Free Download Infinite Content Carousel / Slider Plugin For jQuery

Posted on

This time I will share jQuery Plugin and tutorial about Infinite Content Carousel / Slider Plugin For jQuery, hope it will help you in programming stack.

Infinite Content Carousel Slider Plugin For jQuery - Free Download Infinite Content Carousel / Slider Plugin For jQuery
File Size: 1.01 MB
Views Total: 3107
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

A dead simple jQuery slider plugin which cycles through a set of any html content (i.e. images, text, etc) in a carousel-like fashion. Works on all major web browsers and even IE 8/9/10.

Basic usage:

1. Load jQuery library and the jQuery carousel.js plugin anywhere on the web page.

1 <script src="//code.jquery.com/jquery.min.js"></script>
2 <script src="js/carousel.js"></script>

2. Add a group of html content together with the navigation links into the slider.

01 <div id="carousel-demo">
02   <a href="#" class="control prev">Prev</a>
03   <a href="#" class="control next">Next</a>
04   <div class="slide_window clearfix">
05     <div class="slide">
06       <img src="https://unsplash.it/600/450?image=884">
07     </div>
08     <div class="slide">
09       <img src="https://unsplash.it/600/450?image=883">
10     </div>
11     <div class="slide">
12       <img src="https://unsplash.it/600/450?image=882">
13     </div>
14     <div class="slide">
15       <img src="https://unsplash.it/600/450?image=874">
16     </div>
17     <div class="slide">
18       <img src="https://unsplash.it/600/450?image=873">
19     </div>
20   </div>
21 </div>

3. Initialize the plugin on document ready and done.

1 $('#carousel-demo').carousel();

Changelog:

2020-07-20

  • Code formatting

This awesome jQuery plugin is developed by mlmedia. For more Advanced Usages, please check the demo page or visit the official website.