动画闪烁

时间:2012-09-03 22:45:40

标签: jquery

  

可能重复:
  Resetting following an animation

我一直在玩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);
  });

0 个答案:

没有答案