UNPKG
ng-spinner
Version:
latest (9.0.0)
9.0.0
8.0.0
7.0.0
6.0.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
simple overlay spinner for angular applications
github.com/vpotluri9/ng-spinner
vpotluri9/ng-spinner
ng-spinner
/
src
/
app
/
modules
/
spinner
/
spinner.component.html
9 lines
•
300 B
HTML
View Raw
1
2
3
4
5
6
7
8
9
<
div
*
ngIf
=
"display"
>
<
div
id
=
"overlay"
>
<
div
id
=
"text"
>
<
i
class
=
"fa fa-exclamation-triangle fa-3x"
*
ngIf
=
"error"
aria-hidden
=
"true"
>
</
i
>
<
i
class
=
"fa fa-spinner fa-pulse fa-3x fa-fw"
*
ngIf
=
"!error"
>
</
i
>
<
span
class
=
"sr-only"
>
Loading
</
span
>
</
div
>
</
div
>
</
div
>