一次只能使用一个滑块

时间:2013-06-11 04:27:32

标签: javascript jquery

如果单击底部的WORK链接,您将看到使用carouFredSel插件的工作滑块。单击IMG链接时,将出现第二个滑块,并且不会遵循一次只显示一个滑块的参数。这种情况发生在我设置为首先显示的任何滑块上,并且它们使用相同的脚本。我已经开始了多种方式切换,这总是会发生,我猜测它与切换显示变量有关,但我不知道该怎么办呢

$("#img-carousel").carouFredSel({
    width: "100%",
    height: 450,
    direction: "right",
    circular: true,
    infinite: true,
    items: {
        visible: 1,
        height: 400,
        width: 400
    },
    scroll: {
        duration: 1000,
        pauseOnHover: true
    },
    auto: {
        timeoutDuration: 9999,
        delay: 5000
    },
    prev: {
        button: "#img-left",
        key: "left"
    },
    next: {
        button: "#img-right",
        key: "right"
    },
    pagination: {
        container: "#img-pagination",
        keys: true
    },
    swipe: true,
    mousewheel: false
});

$("#web-carousel").carouFredSel({
    width: "100%",
    height: 450,
    direction: "right",
    circular: true,
    infinite: true,
    items: {
        visible: 1,
        height: 400,
        width: 720
    },
    scroll: {
        duration: 1000,
        pauseOnHover: true
    },
    auto: {
        timeoutDuration: 9999,
        delay: 5000
    },
    prev: {
        button: "#web-left",
        key: "left"
    },
    next: {
        button: "#web-right",
        key: "right"
    },
    pagination: {
        container: "#web-pagination",
        keys: true
    },
    swipe: true,
    mousewheel: false });

任何人都对此问题有任何见解?非常感谢。

http://coreytegeler.com/new/#home

0 个答案:

没有答案