我有一个动画,我一直试图放慢速度,但到目前为止我一直没有成功,我尝试了持续时间并在最后添加时间,但动画似乎以相同的速度运行。
任何帮助都会很棒。
$("document").ready(function(){
// Change the width of the div
var i = 0;
$(".progress-bar span").animate({
width: "100%"
},
{step: function(){
//console.log( "width: ", i++ );
console.log($(this).width());
},
complete : function(){
console.log("finished");
}
},2000);
});