gpt4 book ai didi

jQuery Cycle 插件 [cycle] 终止;幻灯片太少 : 1

转载 作者:行者123 更新时间:2023-12-01 01:10:06 27 4
gpt4 key购买 nike

我收到以下错误:

[循环]终止;幻灯片太少:1

下面是 jQuery Cycle 的代码。我不知道为什么 Chrome 中会出现这个

var inners = $('ul#output li').cycle().cycle('stop');

var slideshow = $('ul#output').cycle({
fx: 'scrollHorz',
speed: 300,
timeout: 0,
startingSlide: 0,
before: function() {

// stop all inner slideshows
inners.cycle('stop');

// start the new slide's slideshow
$(this).cycle({
fx: 'fade',
timeout: 1000,
autostop: true,
end: function() {
// when inner slideshow ends, advance the outer slideshow
slideshow.cycle('next');
}
});
}
});

$.featureList(
$("#tabs li a"),
$("#output li"), {
start_item : 0
}
);

可能出了什么问题?

最佳答案

实际上当你的滑动元素少于2个时就会出现这个错误。如果你想在单个元素中运行循环插件那么转到

jquery.cycle.all.js

并找到

if (els.length < 2) {
log('terminating; too few slides: ' + els.length);
return;
}

并将条件限制更改为 1,如

if (els.length < 1) {
log('terminating; too few slides: ' + els.length);
return;
}

如果您不想运行单个元素,那么您应该在您的语言方面添加条件如果元素计数 > 2,则渲染元素

干杯!

穆达萨尔阿里

关于jQuery Cycle 插件 [cycle] 终止;幻灯片太少 : 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7988220/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com