I am using tympanus Elastislide Carousel Responsive jQuery plugin for my website. The plugin works perfectly on my site. But, I want the casousel will play automacily.
But, I don't find any code for move carousel automatically.
The Slider Plugin link: http://tympanus.net/codrops/2011/09/12/elastislide-responsive-carousel/
The java script I am using
<script type="text/javascript">
$( '#carousel' ).elastislide( {
// orientation 'horizontal' || 'vertical'
orientation : 'horizontal',
// sliding speed
speed : 500,
// sliding easing
easing : 'ease-in-out',
// the minimum number of items to show.
// when we resize the window, this will make sure minItems are always shown
// (unless of course minItems is higher than the total number of elements)
minItems : 3,
// index of the current item (left most item of the 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 one can help how the slider will play automaticaly? I tried autoplay: true. But, not working.