我正在创建一个状态消息栏,其中包含以下属性:
我遇到的问题是逐渐消失。淡出动作似乎没有出列,因此先前的淡入淡出将适用于随后的状态消息。知道如何解决这个问题吗?
function status_message(message, type, long_display) {
if (!type) {
type = SUCCESS;
}
var $status_message = $("#status_message");
long_display ? display_time = 9000 : display_time = 3250;
if ($status_message.is(":visible")) {
$status_message.queue("fx", []).animate({top:-$(this).outerHeight()}, 500, "easeInCubic");
}
$status_message.show().queue(function() {
$(this).html(message).css({'top': -$(this).outerHeight()}).addClass(type).dequeue();
}).animate({top:"0px"}, 750, easing).delay(display_time).fadeOut(500, function () {
$(this).animate({top:-$(this).outerHeight()}, 500, "easeInCubic").addClass(type);
});
}
function status_message_hide() {
$status_message.queue("fx", []).fadeOut(500, function () {
$(this).animate({top:-$(this).outerHeight()}, 500, "easeInCubic");
});
}