0
メッセージシステムに新しいメッセージが来たら、その関数を呼び出すと、この関数はsetIntervalのjqueryアニメーションによるスクロールを表示します。別の関数からの関数内のsetIntervalによるアニメーションの停止
今、私は別の機能を停止して、新しいメッセージがないかどうかチェックします。新しいメッセージがスクロールに来ている場合、更新中フラグを追加
function scroll(userID) {
$('.scroll'+userID).css('left','250px').show().html(''+ userID +' sent a new massage').animate({
left: '-='+(250+149)
}, 2000, function() {
scrollt(userID);
});
window.Ccolor = setInterval(function(){$('.popup'+userID).css('background-color','red');}, 2000);
}
のsetIntervalによって、別の機能チェック、新しいメール
function update() {
//code get userID have no new mail but scroll is running
//on his minimize popup
//want to stop scroll by uesrID
//Tried
clearInterval(Ccolor); //not work also can`t set userID
}
サイドノート:mEssage; mAssageは別の言葉です:) – Utkanos