js/jquery-1.12.4.min.js">
$(function(){
// $('div').animate(字典的形式写动画过程..., 动画所需时间, 运动曲线, 回调函数)
// 1、动画过程:{} -- css多属性写法相同
// 2、时间以毫秒为单位, 600
// 3、运动曲线...:swing linear
// 4、回调函数:就是匿名函数function(){} -- 作用:当动画完成之后执行的命令
$('div').eq(0).animate...width':'800px', 'height':'300px','background':'red'}, 1000, 'swing', function(){
alert('动画完成了...})
// $('div').eq(1).animate({'width':'800px'}, 1000, 'linear')
// ****animate不支持变色动画