auto timeoutDuration对同步轮播不起作用

时间:2013-06-17 16:19:18

标签: jquery caroufredsel

我得到两个同步的caroufredsel实例

    jQuery("#sliderHome").carouFredSel({
        items: 1,
        width: 1280,
        height: 510,
        prev: {
            button: jQuery('.paginate .prev')
        },
        next: {
            button: jQuery('.paginate .next')
        },
        scroll: {
            items: 1,
            fx: "fade",
            duration: 500,
            pauseOnHover: false
        },
        auto: {
            timeoutDuration: 8000
        }
    });

    jQuery('.push.comingsoon ul').carouFredSel({
        items: 1,
        width: 297,
        height: 297,
        scroll: {
            items: 1,
            fx: "fade",
            duration: 500,
            pauseOnHover: false
        },
        prev: {
            button: jQuery('.paginate .prev')
        },
        next: {
            button: jQuery('.paginate .next')
        },
        synchronise: '#sliderHome'

    });

问题是,我不能影响auto参数的timeoutDuration,也不能影响滚动持续时间。如果我为两个实例设置持续时间,同步的东西就会消失(当它们同步时,当我点击.prev或.next时,轮播都会滑动)

有没有人与caroufredsel有类似的问题?

1 个答案:

答案 0 :(得分:0)

我结束了删除同步选项&制作相似的轮播(等于timeoutDuration),并在相同的按钮旁边绑定prev /,工作正常。