Responsive Carousel Plugin jQuery Vmc Simple Slide - Download 100% Responsive Image Carousel Plugin - jQuery vmc.simple.slide

Download 100% Responsive Image Carousel Plugin – jQuery vmc.simple.slide

Posted on

This time I will share jQuery Plugin and tutorial about 100% Responsive Image Carousel Plugin – jQuery vmc.simple.slide, hope it will help you in programming stack.

Responsive Carousel Plugin jQuery Vmc Simple Slide - Download 100% Responsive Image Carousel Plugin - jQuery vmc.simple.slide
File Size: 15.2 KB
Views Total: 4849
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

A dead simple jQuery slider plugin that helps you create a responsive, cross-browser, full-width, infinite-looping carousel from a list of images.

More features:

  • Auto extracts caption text from list’s title attribute.
  • Supports HTML caption.
  • Allows to set min/max height and width.
  • Supports both Right and Left sliding.
  • Autoplay with pause on hover.
  • Allows to show/hide navigation and pagination controls.

How to use it:

1. Add references to jQuery library and the jQuery vmc.simple.slide plugin’s files.

2         integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ"
3         crossorigin="anonymous"></script>
4 <script src="dist/vmc.simple.slide.min.js"></script>
5 <link rel="stylesheet" href="dist/css/style.min.css">

2. Add your image list to the carousel container.

1 <div class="box" id="vmc-slide">
2   <ul>
3     <li title="Image Caption Here"><img src="demo1.jpg"></li>
4     <li><img src="demo2.jpg"></li>
5     <li><img src="demo3.jpg"></li>
6     ...
7   </ul>
8 </div>

3. Call the function on the top container to initialize the image carousel.

1 $('#vmc-slide').vmcSimpleSlide();

4. Below are the available settings to customize the image carousel. You can also modify defaults directly in the vmc.simple.slide.min.js file.

01 $('#vmc-slide').vmcSimpleSlide({
02  
03   // width/height
04   width: 'auto',
05   height: 'auto',
06  
07   // min width
08   minWidth: 0,
09  
10   // min height
11   minHeight: 0,
12  
13   // autoplay
14   auto: true,
15  
16   // 'right' or 'left'
17   autoPlayDirection: 'right',
18  
19   // duration of animation
20   duration: 4000,
21  
22   // animation speed
23   speed: 600,
24  
25   // shows navigation buttons
26   showSideButton: true,
27  
28   // shows pagination bullets
29   showBottomButton: true,
30  
31   // shows image caption
32   showSummary: 'auto',
33  
34   // allows HTML content
35   summaryIsHtml: false,
36  
37   // pause on hover
38   hoverStop: true
39    
40 });

5. API methods.

1 // shows the carousel
2 $('#vmc-slide').show();
3  
4 // hides the carousel
5 $('#vmc-slide').hide();
6  
7 // resets the size of the carousel
8 $('#vmc-slide').vmcSimpleSlide('reSize');

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

source : jquery.net