我正在为投资组合使用多个Cycle实例;只显示一个,其他则隐藏。每个周期都是一个包含多个图像的项目。
我唯一无法弄清楚的是如何检测«current»Cycle实例的结束。
with after:function,它会立即触发所有实例,无法获得“本地”事件。
这是我的代码:
$('.sldr_closeup').each(function() {
var currId = $(this).attr('id');
window['num_'+currId] = 0;
$(this).cycle({
timeout:0,
speed:500,
fx:'fade',
next:'.nextimages',
prev:'.previmages',
fit:1,
nowrap:1,
autstop:0,
after : function(c,n,o,f) {
var currId = $(this).parent('div').attr('id');
(f) ? window['num_'+currId] ++ : window['num_'+currId] --;
if ((o.slideCount == window['num_'+currId] )) {
alert(currId);
$('.nextimages').stop().fadeTo(400,0,function(){
if(currId != $('.projectList .projet').last().find('a').attr('rel'))
$('.nextproject').stop().fadeTo(400,1);
$(this).hide();
});
}
}
}).cycle('pause');
});