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
Post a Comment