当前位置: 代码迷 >> Web前端 >> jquyer 奇效
  详细解决方案

jquyer 奇效

热度:360   发布时间:2013-11-02 19:41:10.0
jquyer 特效
$("#div_olist_"+id ).animate({
  height: "toggle",
  opacity: "toggle"
}, {
  duration: "slow"
},function(){
     $("#div_olist_"+id).remove();
});
return;
    $("#div_olist_"+id ).animate({
          height: 0,
          width: 0,
          opacity: 0.5
        }, 500, "linear", function() {
            $("#div_olist_"+id).remove();
        });

?

  相关解决方案