More Demos: slides bootstrap, AI Website Builder, HTML slider, Slick carousel, Bootstrap carousel, HTML slideshow, CSS Slideshow, jQuery carousel, Image carousel
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())) }});