我一直在玩this,它一直正常工作,直到鼠标不经意地盘旋在黑色DIV上,此时它开始闪烁。我怎样才能避免这种情况发生?
$(".box").css("opacity",0);
$(".container").mouseover(function () {
$(".box").stop(true, true).css("top", 149).animate({top:99, opacity: 1},150);
});
$(".container").mouseout(function () {
$(".box").stop(true, true).animate({top:59, opacity: 0},150);
});