页: 1
[周期]终止;滑坡太少: 页: 1
下面是《酒类循环法》。 我不敢肯定为什么在 Chrome的 in中出现这种情况。
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
}
);
什么可能是错误的?