我正在为我的网站使用 tympanus Elastislide Carousel Responsive jQuery 插件。该插件在我的网站上完美运行。但是,我希望卡索塞尔会自动播放。
但是,我没有找到任何自动移动轮播的代码。
滑块插件链接:http ://tympanus.net/codrops/2011/09/12/elastislide-responsive-carousel/
我正在使用的 java 脚本
<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>
任何人都可以帮助滑块将如何自动播放?我试过自动播放:真的。但是,不工作。