如何解决图像未加载到 mat-carousel-slide
它在使用 mat-carousel 时显示空屏幕而不显示图像 我在资产/图像中可能有图像
<mat-card>
<mat-carousel timings="200ms ease-in" [autoplay]="true" [interval]="3000">
<mat-carousel-slide *ngFor="let slide of slides; let i = index" [image]="slide.image"
overlayColor="#ffffff" [hideOverlay]="false">
</mat-carousel-slide>
</mat-carousel>
</mat-card>
@Component({
selector: "app-home-mainpage",templateUrl: "./mainpage.component.html",styleUrls : ["mainpage.component.html"]
})
导出类 MainPage{
slides = [{'image': '/assets/image/birds.jpg'},{'image': '/assets/image/mobile1.jpg'}];
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。