这是我到目前为止
$('#Friends').fadeIn("slow");
我有jQuery和jQuery UI加载…
$("#Friends").animate({ top: "-=30px",},duration );
– =表示动画将相对于当前顶部位置。
请注意,“好友”元素必须在css中设置相对位置:
#Friends{position:relative;}