0

好的,所以我在使用 Jquery Jcarousel 的页面上有两个实例,但这是障碍......

其中一个实例是“幻灯片”或“图片库”,所以我需要轮播一个一个地循环......

在页脚中,我有另一个实例,其中“事实”列表以一次 3 的循环速率循环。

我怎样才能解决这个问题,这样我基本上就可以吃蛋糕了?

我希望能够一个一个地循环播放幻灯片,并让“事实”列表一次循环 3 个项目。

我尝试将函数复制并重命名为“事实”之类的其他名称,但这不起作用。

这是我正在使用的插件: http: //sorgalla.com/jcarousel/

帮助!

4

1 回答 1

3

它在他们的文档中:

jQuery(document).ready(function() {
    // Initialise the first and second carousel by class selector.
    // Note that they use both the same configuration options (none in this case).
    jQuery('.first-and-second-carousel').jcarousel();

    // If you want to use a caoursel with different configuration options,
    // you have to initialise it seperately.
    // We do it by an id selector here.
    jQuery('#third-carousel').jcarousel({
        vertical: true
    });
});
于 2012-09-18T02:32:31.067 回答