jquery中的动画

1.show()和hide() 参数毫秒,fast,slow,nirmal 200 ,400 600ms
2.fadeIn()fadeOut() 改变改变元素的高度
3.animate() 自定义动画
语法结构:animate(params,speed,callback);
$(this).animate({left:"+=50px"},300);
$(this).animate({left:"400px",height:"200px",opacity:"1"},3000).animate({top:"200px","200px"},30000).fadeOut("slow");
4.判断动画是否处于动画状态
if($(this).is(":animated")).delay(1000)

原文地址:https://www.cnblogs.com/zhaojiedi1992/p/zhaojiedi_js_005.html