所以这是我的循环声明:
function onAfter(curr, next, opts) {
var index = opts.currSlide;
$('.prev')[index == 0 ? 'hide' : 'show']();
$('.next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
}
$(function() {
$('#slideshow').cycle({
pager: '#nav',
prev: '.prev',
next: '.next',
after: onAfter,
}).cycle('pause');
});
我想在之后添加活动类功能:选项。我想在之后保留这两个功能:
这是活动类功能:
$('#slideshow').cycle({
after: function(el, next_el) {
$(next_el).addClass('active');
},
before: function(el) {
$(el).removeClass('active');
}
});
谢谢您的帮助!