jquery - Tympanus Elastislide Carousel autoplay -


i using tympanus elastislide carousel responsive jquery plugin website. plugin works on site. but, want casousel play automacily.

but, don't find code move carousel automatically.

the slider plugin link: http://tympanus.net/codrops/2011/09/12/elastislide-responsive-carousel/

the java script using

<script type="text/javascript">      $( '#carousel' ).elastislide( {      // orientation 'horizontal' || 'vertical'     orientation : 'horizontal',      // sliding speed     speed : 500,      // sliding easing     easing : 'ease-in-out',      // minimum number of items show.     // when resize window, make sure minitems shown     // (unless of course minitems higher total number of elements)     minitems : 3,      // index of current item (left item of carousel)     start : 0,      // click item callback     onclick : function( el, position, evt ) { return false; },     onready : function() { return true; },     onbeforeslide : function() { return false; },     onafterslide : function() { return false; }      } );              </script> 

any 1 can how slider play automaticaly? tried autoplay: true. but, not working.

try scroll property,

scroll: 1 

or

you can find answer here, type of carousel slider given

http://sorgalla.com/jcarousel/

also see these

http://sorgalla.com/projects/jcarousel/examples/static_auto.html


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -