0👍
✅
This is actually what I want.
enter image description here
and I got the solution below
@-moz-keyframes animate-bar {
0% { width: 0%; }
}
@-webkit-keyframes animate-bar {
0% { width: 0%; }
}
@-ms-keyframes animate-bar {
0% { width: 0%; }
}
@-o-keyframes animate-bar {
0% { width: 0%; }
}
@-keyframes animate-bar {
0% { width: 0%; }
}
.chart {
background-color: #DADADA;
height: 2px;
position: relative;
}
.chart .bar {
background-color: #3D98C6;
height: 100%;
-moz-animation: animate-bar 1.25s 1 linear;
-webkit-animation: animate-bar 1.25s 1 linear;
-ms-animation: animate-bar 1.25s 1 linear;
-o-animation: animate-bar 1.25s 1 linear;
animation: animate-bar 1.25s 1 linear;
}
<div class="chart">
<div class="bar" style="width:60%;"></div>
</div>
Source:stackexchange.com