gpt4 book ai didi

angular - 如何在 Angular 中定位 Position MatSnackBar 模块?

转载 作者:太空狗 更新时间:2023-10-29 17:16:22 31 4
gpt4 key购买 nike

我正在尝试将 MatSnackbar 模块放置在我的页面顶部。

我尝试使用config 添加customclass。这是我的代码:

component.ts

let config = new MatSnackBarConfig();
config.duration = 50000;
config.panelClass = ['red-snackbar']
this.snackBar.open("Please fill all the details before proceeding.", null, config);

.css

.red-snackbar{
position: absolute !important;
top: 54px;
}

但它不起作用。是否可以重新定位 MatSnackbar?

最佳答案

您可以确定由 docs 指定的 verticalPosition: MatSnackBarVerticalPosition

:

openSnackBar(message: string, action: string) {
this.snackBar.open(message, action, {
duration: 2000,
// here specify the position
verticalPosition: 'top'
});
}

Demo

关于angular - 如何在 Angular 中定位 Position MatSnackBar 模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51937261/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com