Dynamic Responsive Slideshow Plugin jQuery simpleSlideShow - Download Dynamic Responsive Slideshow Plugin With jQuery - simpleSlideShow

Download Dynamic Responsive Slideshow Plugin With jQuery – simpleSlideShow

Posted on

This time I will share jQuery Plugin and tutorial about Dynamic Responsive Slideshow Plugin With jQuery – simpleSlideShow, hope it will help you in programming stack.

Dynamic Responsive Slideshow Plugin jQuery simpleSlideShow - Download Dynamic Responsive Slideshow Plugin With jQuery - simpleSlideShow
File Size: 3.97 KB
Views Total: 2630
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

simpleSlideShow is a simple, lightweight jQuery plugin for dynamically generating a responsive, cross-fading slideshow from an array of images defined in the JavaScript.

How to use it:

1. Create a container element for your slideshow.

1 <div id='slideShow'></div>

2. Include jQuery library and the JavaScript file simpleSlideShow.js right before the closing body tag.

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

3. Call the function on the container element and define an array of images you want to present.

1 $('#slideShow').simpleSlideShow({
2   urls:[
3     "1.jpg",
4     "2.jpg",
5     "3.jpg"
6   ]
7 })

4. Override the default animation duration.

1 $('#slideShow').simpleSlideShow({
2   time: 8, // 8 seconds
3 })

5. Override the transition time.

1 $('#slideShow').simpleSlideShow({
2   transition: 10 // 1 second
3 })

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

source : jqueryscript.net