私は本当にシンプルなアニメーションを作成しました。これは、CSSアニメーションを使ってプログレスバーを使い果たします。完了したらプログレスバーアニメーションの状態が変わるのはなぜですか?
私が午前問題はバーが0%になった後
.w3-progress-container {
width: 100%;
height: 3px;
position: relative;
background-color: #757575;
}
.w3-progressbar {
background-color: #FBCE07;
height: 100%;
position: absolute;
line-height: inherit;
animation: countdown 10s 1;
-webkit-animation: countdown 10s 1;
animation-timing-function: linear;
}
@-webkit-keyframes countdown {
0% { width:100%; }
100% { width: 0%; }
}
<div class="w3-progress-container">
<div id="myBar" class="w3-progressbar w3-green" style="width:100%"></div>
</div>