486c
jQuery Slider, jQuery Slideshow
Bildergalerie jQuery, HTML Diashow
Galeria de Imagenes con jQuery, Slide Imagenes Gratis
Diaporama jQuery & Galerie D'Image jQuery
Slideshow Immagini jQuery, Galleria jQuery
WOW 网络幻灯片:jQuery 效果的幻灯片
Slider jQuery Chocante, Slider de Imagens jQuery
WOW Slider: jQuery слайдер изображений, HTML5 слайдшоу, CSS3 слайдер
WOW Slider: jQuery Bild-Slider & Galleri
WOW Slider : jQuery画像のスライダー&ギャラリー
WOW Slider: jQuery Afbeelding Slider & Gallery
For troubleshooting, feature requests, and general help, contact Customer Support at
.
Make sure to include details on your browser, operating system, WOW Slider version, link to your page. In most cases you'll get a reply within 1 business day.
Please read the FAQs first to see if your question has already been answered.
Can I stop slider for wordpress on the last image?Q: I assumed that the slider would stop on the LAST slide, but instead it is going back to the FIRST slide before it stops. Is that the way is it supposed to be programmed? If I change it to "loop:false" should it be stopping on the last slide or back on the first slide?
A: 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.