我有我写的这个函数应该显示通知:
function newNotification(message) {
window.clearTimeout(window.tid);
$("#notify").stop().prepend(message + '<br/>').fadeIn(400, function() {
window.tid = window.setTimeout(function() {
$("#notify").fadeOut('3000', function() {
$("#notify").html('');
});
}, 3000);
});
}
问题是,如果我在另一个淡出时传递通知,则#notify
div 不会淡入。它的不透明度卡在 0 和 1 之间。
有人可以帮忙吗?