Image Slideshow Blink Slider - Download Responsive Crossfading Image Slideshow - jQuery Blink Slider

Download Responsive Crossfading Image Slideshow – jQuery Blink Slider

Posted on

This time I will share jQuery Plugin and tutorial about Responsive Crossfading Image Slideshow – jQuery Blink Slider, hope it will help you in programming stack.

Image Slideshow Blink Slider - Download Responsive Crossfading Image Slideshow - jQuery Blink Slider
File Size: 3.86 KB
Views Total: 3389
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

The jQuery Blink Slider plugin makes it simple to create a responsive, automatic, infinitely looping slideshow from a group of images.

The slideshow plugin automatically resizes and repositions the images to make them always be center within the slideshow container on window resize.

It makes use of jQuery animate() method to animate the CSS opacity property for the crossfade effect when switching between images.

How to use it:

1. Load the jQuery Blink Slider plugin and other necessary resources in the html.

1 <link rel="stylesheet" href="css/blink.css">
3         integrity="sha384-tsQFqpEReu7ZLhBV2VZlAu7zcOV+rXbYlF2cqB8txI/8aZajjp4Bqd+V6D5IgvKT"
4         crossorigin="anonymous">
5 </script>
6 <script src="js/jquery.blink.js"></script>

2. Add slide images together with the control element to the Blink Slider.

01 <div class="blink-slider">
02   <div class="blink-view" id="blink">
03     <div class="viewSlide">
04       <img class="fullImg" src="1.jpg" id="foto1">
05     </div>
06  
07     <div class="viewSlide">
08       <img class="fullImg" src="2.jpg" id="foto2">
09     </div>
10  
11     <div class="viewSlide">
12       <img class="fullImg" src=".jpg" id="foto3">
13     </div>
14   </div>
15   <div class="blink-control" id="blink-control">
16   </div>
17 </div>

3. Initialize the Blink Slider by calling the plugin on the top container.

1 $(document).ready(function(){
2   $("#blink").blink();
3 });

4. Adjust the duration & transition delay in milliseconds.

1 $("#blink").blink({
2   speedIn: 500,
3   speedOut: 300,
4   viewTime: 6000
5 });

5. Config the slider/slideshow controls.

01 $("#blink").blink({
02  
03   // shows pagination
04   items: true,
05  
06   // shows navigation
07   navigation: true,
08  
09   // prev text
10   prevText: '◄ Prev',
11  
12   // next text
13   nextText: 'Next ►'
14    
15 });

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

source : jquery.net