Responsive Full Width Slider Plugin For jQuery skdslider - Download Responsive Full Width Slider Plugin For jQuery - skdslider

Download Responsive Full Width Slider Plugin For jQuery – skdslider

Posted on

This time I will share jQuery Plugin and tutorial about Responsive Full Width Slider Plugin For jQuery – skdslider, hope it will help you in programming stack.

Responsive Full Width Slider Plugin For jQuery skdslider - Download Responsive Full Width Slider Plugin For jQuery - skdslider
File Size: 20.4 KB
Views Total: 5695
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

SKDSlider is a jQuery based lightweight, responsive, touch-enabled image slider / carousel / slideshow. It can be used in full width mode. Works on almost all browser. It slides almost anything. Swipe/touch events will work for mobile devices.

How to use it:

1. Add references to jQuery library and the jQuery SKDSlider plugin’s files.

1 <script src="//code.jquery.com/jquery.js"></script>
2 <script src="src/skdslider.min.js"></script>
3 <link href="src/skdslider.css" rel="stylesheet">

2. Add a list of web content to the slider like this:

01 <ul id="demo" class="slides">
02   <li> <img src="slides/1.jpg" />
03     <!--Slider Description example-->
04     <div class="slide-desc">
05       <h2>Slider Title 1</h2>
06       <p>Demo description here. <a class="more" href="#">more</a></p>
07     </div>
08   </li>
09   <li><img src="slides/2.jpg" />
10     <div class="slide-desc">
11       <h2>Slider Title 2</h2>
12       <p>Demo description here. <a class="more" href="#">more</a></p>
13     </div>
14   </li>
15   <li><img src="slides/3.jpg" />
16     <!--NO Description Here-->
17   </li>
18 </ul>

3. Initialize the plugin to generate a basic crossfading slideshow.

1 $('#demo').skdslider();

4. Initialize the plugin to generate a basic slider.

1 $('#demo').skdslider({animationType:'sliding'});

5. Available options.

01 $('#demo').skdslider({
02  
03   // Delay duration between two slides in ms.
04   'delay': 2000,
05  
06   // <a href="https://www.jqueryscript.net/animation/">Animation</a> speed
07   'animationSpeed': 500,
08  
09   // show/hide navigation icon
10   'showNav': true,
11  
12   // Automatically start slideshow
13   'autoSlide': true,
14  
15   // show/hide next/prev buttons
16   'showNextPrev': false,
17  
18   // Pause sliding on mouse hover
19   'pauseOnHover': false,
20  
21   // If true, navigation will be numeric
22   'numericNav': false,
23  
24   // If this properties is set, sliding will automatically stop at the specified slide
25   'stopSlidingAfter': false,
26  
27   // show/hide play button
28   'showPlayButton': false,
29  
30   // 'fading' or 'sliding'
31   'animationType': 'fading' /* fading/sliding */
32    
33 });

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

source : jqueryscript.net