angular2-busy没有显示动画 - Angular 4

时间:2017-07-19 17:50:44

标签: css angular angular-animations

我正在使用angular2-busy一个Angular 4项目。当我使用ngBusy指令时,我只获得默认消息,没有包含背景的动画。我正在busy.css导入index.html文件并导入BusyModuleBroswerAnimationModule

以下是我使用它的方式:

 this.busy = this.route.paramMap.switchMap((params: ParamMap) => 
 this.httpService.getEventHistory(+params.get('site_no')))
.subscribe(events => {this.events = events}); 

我不知道这是否相关,但即使数据加载后,“请等待”消息也会保留在屏幕上。

编辑:我将index.html文件中的CSS链接移动到.angular-cli.json下的styles文件中。我仍然面临同样的问题。

这是我尝试使用的包: https://www.npmjs.com/package/angular2-busy

1 个答案:

答案 0 :(得分:1)

我最终只是手动将样式复制到我的全局styles.css文件中。不理想,但它的工作原理。