我正在使用此代码来扩大 div:
$("#bar").animate({width: '50%'}, 3000);
我还想完全按照 $("#bar") div 中的变化来显示从 0% 到 50% 的 % 值。
请指教,谢谢!
我正在使用此代码来扩大 div:
$("#bar").animate({width: '50%'}, 3000);
我还想完全按照 $("#bar") div 中的变化来显示从 0% 到 50% 的 % 值。
请指教,谢谢!
这就是该step
选项的用途。看看文档:
http://api.jquery.com/animate/
$("#bar").animate({
width: '50%'
},
{
duration: 3000,
step: function(now, fx){
// update here, now is the current value
// something like this
$(this).text(Math.floor(now) + "%");
}
});
$('#bar').animate({width: '50%'}, {
duration: 3000,
step: function(now, fx) {
$('#bar_pct').text(now + '%');
}
});