ここで jsFiddleに設定された例があります.jQueryは現在、幅を固定ピクセル幅として設定しています。そのため、ブラウザの幅を狭くすると、バーが画面から右にはみ出します。私の質問は、代わりに jQuery で幅をパーセンテージに設定するにはどうすればよいですか?
<div class="bars">
<div class="meter">
<span style="width: 88%"></span>
</div>
<div class="meter">
<span style="width: 62%"></span>
</div>
</div>
$(".meter > span").each(function() {
$(this)
.data("origWidth", $(this).width())
.width(0)
.animate({
width: $(this).data("origWidth")
}, 3600);
});