Tween的主页在这里:http://createjs.com/tweenjs , 这里边还有挺多开源项目的: Tween公式 4个参数 t:current time(当前时间) b:beginning value(初始值) c: change in value(变化量) d:duration(持续时间) return (目标点) var Tween = { linear: function (t, b, c, d){ //匀速 return c*t/d + b; }, easeIn: func…