More Demos: bootstrap owl carousel slider, AI Website Builder, HTML slider, Slick carousel, Bootstrap carousel, HTML slideshow, CSS Slideshow, jQuery carousel, Image carousel
Q: I like to stop wowslider after one loop and to stop it on the last picture.
It always jumps to the first picture and stops there.
How can I make it on the last picture?
A: Yes, it's possible.
Open "script.js" file in any text editor (for example, Notepad), find last line, for
example:
jQuery("#wowslider-container1").wowslider({effect:"basic_linear",prev:"",next:"",duration:13*100,delay:25*100,outWidth:480,outHeight:360,width:480,height:360,autoPlay:true,stopOnHover:false,loop:true,bullets:true,caption:true,controls:true});
and add "stopOn: N" (where N - number of the slide you want the slider to stop on ) at the
end of this line (use "-1" value to stop on last image). For example:
jQuery("#wowslider-container1").wowslider({effect:"basic_linear",prev:"",next:"",duration:13*100,delay:25*100,outWidth:480,outHeight:360,width:480,height:360,autoPlay:true,stopOnHover:false,loop:true,bullets:true,caption:true,controls:true,stopOn:-1});
That's all.