jQuery动态jcarsoul使它成为自动运行

时间:2010-04-25 15:52:44

标签: jquery

我正在使用jCarousel jQuery插件。

如何将点击模式更改为自动运行模式?

当前场景:当您单击“下一步”时,它会显示接下来的三张图像。 单击“返回”时,将显示前三个图像。

我想将此方案更改为:

加载时,插件应该开始运行(图像)。我还需要NEXT和BACK按钮。当用户单击后退按钮时,它应显示前三个图像并向后运行图像。

有可能吗?

2 个答案:

答案 0 :(得分:1)

如果您查看某些other examples,您会注意到:Carousel with autoscrolling

答案 1 :(得分:0)

// Uncomment the following option if you want items
// which are outside the visible range to be removed
// from the DOM.
// Useful for carousels with MANY items.
auto: 1,
// wrap: 'last',
wrap: 'circular',
// easing: 'BounceEaseOut',
// vertical: true,
animation: 2500,
visible: 3,
speed:1000 ,
wrap: 'circular',

// itemVisibleOutCallback: {onAfterAnimation: function(carousel, item, i, state, evt) { carousel.remove(i); }},
itemLoadCallback: mycarousel_itemLoadCallback

这解决了我的问题。