jQuery Flexslider a Responsive Thumbnail Slider

The FlexSlider is highly customizable plugin for jQuery to create all kind of carousel/slider on a website. This plugin allows you to create a responsive thumbnail slider, content/text, video slider and image slider with caption, etc. It comes with multiple configuration options to customize each functionality of the slider.

Moreover, the FlexSlider supports touch, keyboard navigation and mousewheel to slide items. Besides this, it also supports CSS3 animations and HTML5 videos in sliding items.

[intro_ad]

Plugin Overview and Preview

Plugin: FlexSlider
Author: WooCommerce
Category: Carousel
Published: January 20, 2024
File Type: zip archive (HTML, CSS, Images & JavaScript )
Package Size: 1 MB
Dependencies: jQuery 1.7.0 or Latest version
Last Modified:
GPLv2
10,715
[ad_after_overview]

How to Create a Responsive Thumbnail Slider

1. To create “responsive thumbnail slider”, we need to getting started with FlexSlider. So, load the (minefield version of) jQuery into your website.

<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>

2. Similarly, include the FlexSlider’s CSS and JavaScript file in your website/app.

<!-- FlexSlider CSS -->
<link rel="stylesheet" href="css/flexslider.css">
<!-- FlexSlider JS -->
<script src="js/jquery.flexslider.js"></script>

3. Now, create a div element with id “slider” and place your main images in it. Likewise, create another div with id “carousel” and place your thumbnails links in it.

<section class="slider">
   <div id="slider" class="flexslider">
      <ul class="slides">
         <li>
            <img src="images/kitchen_adventurer_cheesecake_brownie.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_lemon.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_donut.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_caramel.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_cheesecake_brownie.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_lemon.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_donut.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_caramel.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_cheesecake_brownie.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_lemon.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_donut.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_caramel.jpg" />
         </li>
      </ul>
   </div>
   <div id="carousel" class="flexslider">
      <ul class="slides">
         <li>
            <img src="images/kitchen_adventurer_cheesecake_brownie.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_lemon.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_donut.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_caramel.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_cheesecake_brownie.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_lemon.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_donut.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_caramel.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_cheesecake_brownie.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_lemon.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_donut.jpg" />
         </li>
         <li>
            <img src="images/kitchen_adventurer_caramel.jpg" />
         </li>
      </ul>
   </div>
</section>

4. When all was done, initialize the plugin (with following configurations) in jQuery document ready function.

$(document).ready(function(){
	      $('#carousel').flexslider({
        animation: "slide",
        controlNav: false,
        animationLoop: false,
        slideshow: false,
        itemWidth: 210,
        itemMargin: 5,
        asNavFor: '#slider'
      });
      $('#slider').flexslider({
        animation: "slide",
        controlNav: false,
        animationLoop: false,
        slideshow: false,
        sync: "#carousel",
        start: function(slider){
          $('body').removeClass('loading');
        }
      });
});

FlexSlider Advance Configuration Options

The following are some advanced configuration options to create / customize responsive thumbnail slider.

Option Default Type Description
slideshow true Boolean Enable/disable slideshow (autoplay) functionality.

Example:

      $('#slider').flexslider({ 
	slideshow : true,
}); 
animation “fade” String Define an animation for sliding items. Possible options are: “fade” or “slide”.

Example:

$('#slider').flexslider({ 
	animation : "fade",
}); 
direction “horizontal” String This option define the direction for sliding items. The possible options are: “horizontal” and “vertical”.

Example:

$('#slider').flexslider({ 
	direction : "horizontal",
}); 
reverse false Boolean Decide whether to reverse animation direction.

Example:

$('#slider').flexslider({ 
	reverse : false,
}); 
animationLoop true Boolean Enable/disable loop for animations.

Example:

$('#slider').flexslider({ 
	animationLoop : true,
}); 
slideshowSpeed 7000 Number Define the speed for slideshow in milliseconds.

Example:

$('#slider').flexslider({ 
	slideshowSpeed : 7000,
}); 
animationSpeed 600 Number It define the speed for animation in milliseconds.

Example:

$('#slider').flexslider({ 
	animationSpeed : 600,
}); 
initDelay 0 Number Generally, this option define the initialization delay.

Example:

$('#slider').flexslider({ 
	initDelay : 0,
}); 
randomize false Boolean If you want to show your image in random order, then this option is useful.

Example:

$('#slider').flexslider({ 
	randomize : false,
}); 
pauseOnAction true Boolean This option pause the slider when a user interact with controls.

Example:

$('#slider').flexslider({ 
	pauseOnAction : true,
}); 
pauseOnHover false Boolean Decide whether to pause slideshow on hover.

Example:

$('#slider').flexslider({ 
	pauseOnHover : false,
}); 
useCSS true Boolean Lets slider to use CSS3 transitions if available.

Example:

$('#slider').flexslider({ 
	useCSS : true,
}); 
touch true Boolean Enable/disable touch for slider.

Example:

$('#slider').flexslider({ 
	touch : true,
}); 
video false Boolean If you placed some videos in the slider, turn this option to true.

Example:

$('#slider').flexslider({ 
	video : false,
}); 
prevText “Previous” String Define the text for previous slide button.

Example:

$('#slider').flexslider({ 
	prevText : "Previous",
}); 
nextText “Next” String It define the text for next slide button.

Example:

$('#slider').flexslider({ 
	nextText : "Next",
}); 
keyboard true Boolean Enable/disable keyboard navigation.

Example:

$('#slider').flexslider({ 
	keyboard : true,
}); 
mousewheel false Boolean If you want to scroll item with mousewheel, turn this option to true. It requires jquery.mousewheel.js plugin.

Example:

$('#slider').flexslider({ 
	mousewheel : false,
}); 
sync “” String Mirror the action performed on this slider to another. Pass the selector in this option.

Example:

$('#slider').flexslider({ 
	sync : "",
}); 
itemWidth 0 Number It define the with for carousel item.

Example:

$('#slider').flexslider({ 
	itemWidth : 0,
}); 
itemMargin 0 Number Set the margin for carousel item.

Example:

$('#slider').flexslider({ 
	itemMargin : 0,
}); 
minItems 0 Number The minimum number to visible in the carousel.

Example:

$('#slider').flexslider({ 
	minItems : 0,
}); 
maxItems 0 Number The maximum number of item visible in the carousel.

Example:

$('#slider').flexslider({ 
	maxItems : 0,
}); 
move 0 Number It define the number of carousel item should move on animation.

Example:

$('#slider').flexslider({ 
	move : 0,
}); 
[ad_after_artical]

Flexslider Callback Functions

The following are some options to excute custom callback functions.

start: function(){},            
before: function(){},           
after: function(){},            
end: function(){},              
added: function(){},            
removed: function(){}
About CodeHim

Free Web Design Code & Scripts - CodeHim is one of the BEST developer websites that provide web designers and developers with a simple way to preview and download a variety of free code & scripts. All codes published on CodeHim are open source, distributed under OSD-compliant license which grants all the rights to use, study, change and share the software in modified and unmodified form. Before publishing, we test and review each code snippet to avoid errors, but we cannot warrant the full correctness of all content. All trademarks, trade names, logos, and icons are the property of their respective owners... find out more...

Please Rel0ad/PressF5 this page if you can't click the download/preview link

X