本文实例讲述了jQuery中animate用法。分享给大家供大家参考。具体如下:
Box h3").toggle(function(){
$(this).addClass("Box-arrow");
$(this).next(".side-text").animate({
height: 'toggle',opacity: 'toggle'
},"slow");
return false;
},function(){
$(this).next(".side-text").animate({
height: 'toggle',"slow");
$(this).removeClass("Box-arrow");
return false;
});
});
希望本文所述对大家的jQuery程序设计有所帮助。
原文链接:https://www.f2er.com/jquery/55407.html