#
January 12, 2012 at 4:55 am
Ok, look in loopslider.js: You’ll find:
$(".next",$t).click(function(){
if(active===false) {
animate("next",true);
if(o.autoStart){
if (o.restart) {autoStart();}
else {clearInterval(sliderIntervalID);}
}
} return false;
});
$(".previous",$t).click(function(){
if(active===false) {
animate("prev",true);
if(o.autoStart){
if (o.restart) {autoStart();}
else {clearInterval(sliderIntervalID);}
}
} return false;
});
Change animate(“next”,true) and animate(“prev”,true) to: animate(“fade”,true);
Quite lame that you have to actually edit the plugin itself – I’d recommend using something like PlusSlider or AnythingSlider in future. Especially since the developers of those plugins are active on these forums.