jQuery浮动动画 - 更好的想法?

时间:2012-06-22 01:36:24

标签: jquery animation

我正在寻找一种方法让我的动画更平滑。

所以我不必花时间解释一下here并使用过滤选项。

enter image description here

你可以看到它的动画......但不是最好的......当事情突然消失时,它可能会有点混乱。

相反,我希望他们能够滑到现在的位置......就像这样:http://amvisydney.com.au/

所以这是我目前的动画代码(使用fadeIn和fadeOut):

      if($(this).attr('rel').indexOf(amy) >= 0){

         $(this).fadeIn(500);

      }else{

         $(this).fadeOut(500);

      }

让我知道如何改善这一点。

1 个答案:

答案 0 :(得分:0)

试试这个

$(this)..animate({opacity: 'toggle', height: 'toggle'}, 350);

DEMO.