Englishslideshow jquery plugin  Deutschhtml bildergalerie  Españolgaleria html  Françaisphoto diaporama  ItalianoImmagini Galleria   汉语网络幻灯片: 效果的幻灯片  Português brasileiroGaleria De Imagens  Русскийслайдер изображений, слайдшоу, CSS слайдер  Svenska Bild Galleri  日本語画像のスライダー&ギャラリー  NederlandsAfbeeldingen Caroussel 

Recent Demos

 How can I set "random order" parameter in jquery simple slider?

Q: On your website, you refer to a "Parameter to run slideshow in specified or random order".
How is this parameter set? This is probably the key feature that attracted us to your product.

A: To make random order for slides, open "script.js" file in any text editor (for example,Notepad) and add parameter "onBeforeStep":

onBeforeStep: function(curIdx,count){ return (curIdx+1 + Math.floor((count-1)*Math.random())) }



For example:

jQuery("#wowslider-container1").wowslider({effect:"fade",prev:"",next:"",duration:10*100,delay:21*100,outWidth:480,outHeight:360,width:480,height:360,autoPlay:true,stopOnHover:false,loop:false,bullets:true,caption:true,controls:true,onBeforeStep: function(curIdx,count){ return (curIdx+1 + Math.floor((count-1)*Math.random())) }});