我有一個動畫,我一直在試圖減慢,但到目前爲止,我一直unsucsessful我試過持續時間,並在最後添加時間,但動畫似乎運行在相同的速度。慢下來的jQuery動畫
任何幫助將是偉大的。
$("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);
});
看到這裏http://jsfiddle.net/Jrand/8jXDK/2/
這不是一個真正的評論嗎? –
啊,你去了。給你,我發佈了評論,然後再更新答案! –
@harsha - 包括代碼。 – jfriend00