我是angular的新手。我有两个组件,一个用于显示图像滑块,另一个用于显示类别列表(类似于侧面导航,但显示为列表)。我希望我的列表组件能够覆盖图像滑块,以便两者都可见,并且列表下的图像滑块的内容被隐藏。 有什么办法可以做到这一点? 预先感谢。
请查看以下内容:Layout Of Webpage
<mat-nav-list>
<a mat-list-item routerLink="#" *ngFor="let list of lists">
<mat-icon >
{{list.category_icon}}
</mat-icon>
{{list.category_name}}
</a>
</mat-nav-list>