使用Jquery向下滑动动画

时间:2010-10-23 23:04:39

标签: jquery animation slidedown

我希望用jquery有一个向下滑动动画(这些天很流行)。 我有文本注入div。该文本是从数据库中提取的。

   success: function(text, textS, xhr){
    if(xhr.status){
     if (text == "") {
      $("#resultsDiv").html(" ");
     }
     else {
      $("#resultsDiv").html(text.replace(/\+/g,"<br/>"));
     }
    }
   },

您认为在此过程中实施动画的最佳方式是什么?

1 个答案:

答案 0 :(得分:3)

快速查看in the manual会告诉您该怎么做:

if (text == "") {
    $("#resultsDiv").html(" ").slideUp();
} else {
    $("#resultsDiv").html(text.replace(/\+/g,"<br/>")).slideDown();
}