码迷,mamicode.com
首页 > 其他好文 > 详细

进度条

时间:2016-07-05 23:55:35      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

$(function () {
$("#box").progressbar({
width: 300, //宽度
height: 20, //高度
value: 10, //进度
text: ‘1111‘, //进度条上显示的数字,默认值‘{value}%‘ 一般不改
onChange: function (newValue, oldValue) {
console.log(‘新‘ + newValue + "旧:" + oldValue);
},

});
//setTimeout(function () {
// $("#box").progressbar(‘setValue‘, 70); //一秒后进度到70%
//}, 1000);

setInterval(function(){
$("#box").progressbar(‘setValue‘, $("#box").progressbar(‘getValue‘)+5) //进度条每0.2秒进5% 动画效果
}, 200);
});

进度条

标签:

原文地址:http://www.cnblogs.com/choii/p/5645239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!