自定义动画
// animate 自定义动画
$("button").click(function(){
$("div").animate({"width":"456px","height":"456px"},2000);
});
// 1. 变化过程 2.变化时间
$("button").click(function(){
$("div").animate({"width":"+=100px"},2000);
});
// 3. 多个动作
$("button").click(function(){
$("div").animate({"top":"456px","left":"456px"},2000).animate({"top":"0px","left":"256px"},2000);
});