Angular 2 Progressbar
A nanoscopic progress bar. Featuring realistic trickle animations to convince your users that something is happening!
Table of Contents
## Installation
Install it with npm
npm install ng2-progressbar --save
## Usage
Add NgProgressModule
to NgModule imports
array.
import { NgProgressModule } from 'ng2-progressbar';
@NgModule({
imports: [
NgProgressModule
]
})
In your template
<ng-progress></ng-progress>
Add NgProgressService
wherever you want to use the progressbar.
import {NgProgressService} from "ng2-progressbar";
@Component({
})
constructor(private pService: NgProgressService) {
}
ngOnInit(){
this.pService.start();
this.http.get(url).subscribe(res){
this.pService.done();
}
}
NgProgressService options (functions):
-
NgProgressService.start()
Shows the progress bar
-
NgProgressService.set(n)
Sets a percentage 30%
-
NgProgressService.inc(n)
Increments by 20%
-
NgProgressService.done()
Completes the progress
-
NgProgressService.colors = [color1, color2, color3, ...]
if presented, animates the progress color with colors array
-
NgProgressService.colorsInterval = 500
progressbar colors transition speed in ms
NgProgressComponent options (inputs):
<ng-progress [positionUsing]="'marginLeft'" [minimum]="0.15" [ease]="'linear'"
[speed]="'200'" [showSpinner]="'false'" [direction]="'rightToLeftIncreased'"
[color]="'red'" [trickle]="true" [trickleSpeed]="250"
></ng-progress>
- [minimum]: between
0.0
to 1.0
.
Progress initial starting value, default 0.08
Progress animation ease, default linear
.
- [speed]: in milliseconds.
Transition speed, default 300
.
Auto trickle the progressbar, default true
- [trickleSpeed]: in milliseconds.
Progress trickling speed, default 300
.
- [direction]:
leftToRightIncreased
, leftToRightReduced
, rightToLeftIncreased
, rightToLeftReduced
.
Progressbar direction for LTR and RTL websites, default: leftToRightIncreased
.
- [positionUsing]:
marginLeft
, translate
, translate3d
.
Positioning method, default: marginLeft
- [color]: any color format
#1eb77f
, brown
, rgb(30, 183, 127)
.
Set the progressbar color, default: #29d
Display the spinner, default: true
.
Toggle the progressbar (alternate to start
/done
), . default false
.
## Issues
If you identify any errors in the library, or have an idea for an improvement, please open an issue. I am excited to see what the community thinks of this project, and I would love your input!
## Author
Murhaf Sousli
## Credits
Inspired by NProgress.js by Rico Sta. Cruz.
## License