我想逐步給進度條設置動畫。當我使用for
循環,進度條消失使用jQuery進度條的動畫
<script type="text/javascript">
$(function() {
// Set the progressbar's initial value to 76%.
$("#progressbar1").progressbar({value:7});
// Set the progressbar's value to 18%.
$("#button1").click(function() {
$("#progressbar1").progressbar("option", "value", 18);
});
// Increment the progressbar's current value by 10%.
$("#button2").click(function() {
var val = $("#progressbar1").progressbar("option", "value");
});
// Decrement the progressbar's current value by 10%.
$("#button3").click(function() {
var val = $("#progressbar1").progressbar("option", "value");
$("#progressbar1").progressbar("option", "value", val-10);
});
});
</script>
<input id="button2" type="button" value="Progress" />
所以,當我在按鈕2點擊,進度欄逐漸動畫。
如果有人幫我在頁面打開時加載動畫onload()
函數 請幫助我逐步設置進度條的動畫,並且在打開文件時應該自動加載。
Regards,
Chandru。
緩存您
編輯jQuery結果集! `var $ progressbar1 = $(「#progressbar1」);`你必須提供一些HTML標記以幫助我們。 – 2011-02-03 12:18:53
好的chandru我知道了一切請按照鏈接http://www.catswhocode.com/blog/how-to-create-a-kick-ass-css3-progress-bar – hardik9045 2011-02-03 12:15:53
你可以檢查[本教程](http ://www.codeproject.com/KB/progress/JQueryProgressBar.aspx)。 – enam 2011-02-03 12:18:37