2.5秒かけてプログレスバーの幅を0%から70%にアニメーション化します。ただし、次のコードは、2.5秒の遅延の直後に幅を70%に変更します。私は何が欠けていますか?
$(".progress-bar").animate({
width: "70%"
}, 2500);
JSFiddle:http://jsfiddle.net/WEYKL/
問題は、デフォルトのBootstrapトランジション効果で、width
プロパティの更新をアニメーション化します。
対応するスタイルを非表示にしてスイッチをオフにすると、正常に機能します。例:
.progress-bar {
-webkit-transition: none !important;
transition: none !important;
}
それは非常に簡単です bootstrapプログレスバーを使用する場合、
attrib aria-valuenow = "percent_required%"を、次のようにクラス "progress-bar"を持つdivにのみ追加します。
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="57%" aria-valuemin="0" aria-valuemax="57">
次に、スクリプトで:
<script>
$(document).on('ready',function(){
$('.progress .progress-bar').css("width",function() {
return $(this).attr("aria-valuenow") + "%";
})
})
</script>
リロード、ゴー!
したがって、CSSまたはjQueryを使用して遷移効果を調整する方が理にかなっています。
.progress-bar {
-webkit-transition: width 2.5s ease;
transition: width 2.5s ease;
}
そして、幅の値を変更するだけです。
$(".progress-bar").css('width', '70%');
以下を追加することで修正できます:
.progress .progress-bar {
transition: unset;
}
var delay = 500;
$(".progress-bar").each(function(i) {
$(this).delay(delay * i).animate({
width: $(this).attr('aria-valuenow') + '%'
}, delay);
$(this).prop('Counter', 0).animate({
Counter: $(this).text()
}, {
duration: delay,
// easing: 'swing',
step: function(now) {
$(this).text(Math.ceil(now) + '%');
}
});
});
.progress {
margin-bottom: 20px;
}
.progress-bar {
width: 0;
}
.bg-purple {
background-color: #825CD6 !important;
}
.progress .progress-bar {
transition: unset;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<div class="container">
<h2>Bootstrap 4 Progress Bars</h2>
<div class="progress border">
<div class="progress-bar progress-bar-striped progress-bar-animated bg-danger" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">70</div>
</div>
<div class="progress border">
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100">50</div>
</div>
<div class="progress border">
<div class="progress-bar progress-bar-striped progress-bar-animated bg-purple" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">90</div>
</div>
</div>