0
출시되면 이벤트를 중지가 루프에 포함되어다른 이벤트가 난이 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
.
이 당신의 전체 코드를 붙여 넣습니다. – Jebin
http://jsfiddle.net/rolandfeghaly/Jxhxf/92/ – Roland
http://jsfiddle.net/rolandfeghaly/Jxhxf/97/ – Roland