ngx-loading-bar
Simple loading bar on the top of your page to indicate page loading loading.
Installation
-
Install npm module:
npm install ngx-loading-bar --save
-
If you are using system.js you may want to add this into
map
andpackage
config:
Usage
Import LoadingBarModule
and put loading bar component to the top of your page, most probably near the main header.
<loading-bar color="#FF0000" height="3" animationTime="0.3" runInterval="100" progress="0"></loading-bar>
progress
is overall loading progresscolor
color of the loading barheight
height of the loading baranimationTime
css animation time in msrunInterval
interval during which loading will increase its percents
You can also use LoadingBarService
service to control your loading bar progress - start and stop loading.
Sample
;; @ height = 2; color = "#4092F1"; runInterval = 300; { } { thisloadingBarServicestart; } { thisloadingBarService; } { thisloadingBarService; } { thisloadingBarServicecomplete; } @
Take a look on samples in ./sample for more examples of usages.