我有这个jQuery:
$(function() {
// create the image rotator
var lightShow = setInterval(rotateImages, 500);
function rotateImages() {
var oCurPhoto = $('#photoShow div.current');
var oNxtPhoto = oCurPhoto.next();
if (oNxtPhoto.length == 0){
oNxtPhoto = $('#photoShow div:first');
}
oCurPhoto.removeClass('current').addClass('previous');
oNxtPhoto.hide().addClass('current').fadeIn(2000, function() {
oCurPhoto.removeClass('previous');
});
}
});
它包含在循环中,因此该行将连续执行5次
但我想要做的是在循环启动另一个fadeIn
时停止fadeIn
的效果。
答案 0 :(得分:0)