I need to have a jQuery scroller/slider on my website that can scroll multiple div's in a random order.
For instance: I have few divs like:
<div>
<div> Div 1</div>
<div> Div 2</div>
<div> Div 3</div>
<div> Div 4</div>
<div> Div 5</div>
<div> Div 6</div>
<div>
And I would want them to autoscroll continuously but in a random order. like:
------------------------------------------------
<-- Div 3 | Div 6 | Div 1 | Div 5 | Div 2 -->
------------------------------------------------
P.S: I have already tried content sliders like slick slider, ALS Scroller, Smooth Div Scroll and cycle jquery carousel. But non of them had the random sliding feature.
Any help would be greatly appreciated!
Thanks!