jQuery的动画api animate jQuery设置动画 animate({属性集合},时间); animate({属性集合},时间,回调函数); animate({属性集合},时间,运动曲线,回调函数);使用动画需要注意的: * 动画队列* 动画队列其实JQ动画的特点,只不过有时候这特特点很多时候不需要,* 所以我们要清空动画队列,实现效果** 清空队列* 核心函数:* .stop()* 默认值:* .stop(true,false)* // 第一个参数:是否清除队列* // 第二个参数…