Stylish animated progress bar
npm install angular-progress-bar-sm|
|
|
|
Make it Animated by below mentioned code |
|
sh
npm i angular-progress-bar-sm
`
Usage
Import
`ts
import { AngularProgressBarSmModule } from 'angular-progress-bar-sm';
`
$3
Start passing dynamic values in your project & use [progressValue] = "progressValue"
`ts
let intervalValue = setInterval(() => {
this.progressValue += 1;
if(this.progressValue === 100){
this.progressValue = 0;
}
},100)
`
Fundamental Usage
`html
[progressValue]="50"
[progressColor]="'#000'"
[progressBarType]="'bar'"
/>
``