如果您单击底部的 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 });
有人对这个问题有任何见解吗?这将不胜感激。