KlikFlow jQuery Plugin
There are several jQuery sliders / carousels out there, but none did what I wanted, which was basically to take a really simply block of HTML and turn it into a really nicely animated, automatic slider with a simple bit of jQuery, such as:
$(document).ready(function(){
$("#mySlides").jKlikFlow({
width: "638px",
height: "223px",
easing: "easeOutBack",
prev: "#jFlowPrev",
next: "#jFlowNext",
duration: 1000,
pauseBetweenSlides: 2500,
auto: true
});
});
So here it is: KlikFlow jQuery Slider plug-in demo | source code
This is my first attempt at a jQuery plug-in (I thought it about time I put something back into the open source community) so your feedback is appreciated.
$(document).ready(function(){
$("#mySlides").jKlikFlow({
width: "638px",
height: "223px",
easing: "easeOutBack",
prev: "#jFlowPrev",
next: "#jFlowNext",
duration: 1000,
pauseBetweenSlides: 2500,
auto: true
});
});
So here it is: KlikFlow jQuery Slider plug-in demo | source code
This is my first attempt at a jQuery plug-in (I thought it about time I put something back into the open source community) so your feedback is appreciated.
Comments