2

我正在使用引导程序制作旋转木马。然而问题是我似乎无法弄清楚每次轮播进行循环时如何调用函数(我的意思是轮播的自动循环功能)。有人对此有任何想法吗?

我需要它的地方如下:除了轮播之外,我有所有图片(来自轮播)作为拇指,所以你有一个像相册的东西。然后我可以单击其中任何一个拇指,然后直接进入它。然后我让拇指“活动”(基本上是黑色边框而不是灰色边框),然后我让前一个拇指(当我点击它时处于活动状态的那个)恢复正常。但是......当旋转木马循环时(看起来非常棒),我想让活动拇指保持最新。为了做到这一点,我唯一需要做的就是能够在轮播循环的同时调用一个函数。

4

1 回答 1

2

As found in the documentation for the Twitter Bootstrap Carousel plugin, the carousel fires two events that you can listen for, slide and slid. Try listening to one of these events, and then executing the code you need in the callback.

Example

$('body').on('slid', function (e) {
  //do stuff in here
});
于 2012-07-16T17:38:50.200 回答