Customizable Image Slider Widget For jQuery UI HRImageSlideshow - Download Customizable Image Slider Widget For jQuery UI - HRImageSlideshow

Download Customizable Image Slider Widget For jQuery UI – HRImageSlideshow

Posted on

This time I will share jQuery Plugin and tutorial about Customizable Image Slider Widget For jQuery UI – HRImageSlideshow, hope it will help you in programming stack.

Customizable Image Slider Widget For jQuery UI HRImageSlideshow - Download Customizable Image Slider Widget For jQuery UI - HRImageSlideshow
File Size: 2.73 MB
Views Total: 1821
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

HRImageSlideshow is a jQuery & jQuery UI widget used to create a simple, responsive, highly customizable image slider / slideshow with easing and keyboard support.

How to use it:

1. Load the needed jQuery and jQuery UI in the html page.

1 <script src="/path/to/jquery.min.js"></script>
2 <script src="/path/to/jquery-ui.min.js"></script>

2. Load the jQuery HRImageSlideshow plugin’s files in the html page.

1 <link rel="stylesheet" href="/path/to/imageSlideshow.css">
2 <script src="/path/to/imageSlideshow.js"></script>

3. Add a list of images to the slider using either data-src or src attribute.

01 <div class="imageSlideshow">
02   <ul class="slideshow-content">
03       <li>
04           <img src="" data-src="1.jpg">
05       </li>
06       <li>
07           <img src="2.jpg">
08       </li>
09       ...
10   </ul>
11 </div>

4. Active the image slider.

1 var slideshow = $(".imageSlideshow").imageSlideshow({
2     /* OPTIONS HERE */
3 });

5. Make it responsive.

1 slideshow.imageSlideshow('watch<a href="https://www.jqueryscript.net/tags.php?/Responsive/">Responsive</a>ness');

6. Plugin’s default options.

01 duration : "600",
02 animationInterval : "3000",
03 easing: "linear",
04 controlNav:true,
05 directionNav:true,
06 startAt:"1",
07 keyboard<a href="https://www.jqueryscript.net/tags.php?/Navigation/">Navigation</a> : true,
08 automaticSlideshow : false,
09 fitToHeight : false,
10 after : function(index) {},
11 carouselLoaded : function() {}

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

source : jqueryscript.net