你好,我是新手,我在ng-bootstrap中使用Ngbmodal。我在.ts文件中以编程方式调用了模式。
该代码正常工作,显示了模态,但其中的一部分图像在加载几秒钟后被加载。有人知道是什么原因或如何解决此问题,以便在模态启动后立即显示图像。
模态是一个组成部分:
<div class="row" style="background-color: transparent">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-12" >
<img src="assets/img/ops2.png" class="img-responsive">
<h1 class="text-center">¡Ooops!</h1>
<p class="text-center">{{message}} </p>
</div>
</div>
Ts文件:
openValidationForm() {
this.modalReference = this.modalService.open(ErrorComponent, { backdrop: 'static', keyboard: false, size: 'lg', centered: true });
this.modalReference.componentInstance.message =this.errorMessage;
}