A simple Angular Loading Component. This is built by Angular CLI v9.
Simple Demo: Demo
npm i -s ngx-simple-loadingImport the component in app.module.ts or whatever else you like,
import { NgxSimpleLoadingComponent } from 'ngx-simple-loading';also in the same file, add the component in declarations
@NgModule({
declarations: [
...
NgxSimpleLoadingComponent
],
...
})Then, use the component by just
<ngx-simple-loading></ngx-simple-loading>It is possible to customize the text by setting attribute "text", say
<ngx-simple-loading [text]="'読み込み中'"></ngx-simple-loading>