我试图在用户处于非活动状态 5 分钟时显示弹出窗口。
timeout() {
setTimeout(() => this.openDialog(), 4000);
}
<h2 mat-dialog-title>Alert!</h2>
<mat-dialog-content class="mat-typography">
</mat-dialog-content>
<mat-dialog-actions align="end">
<button mat-button mat-dialog-close>Cancel</button>
<button mat-button [mat-dialog-close]="true"cdkFocusInitial>Ok</button>
</mat-dialog-actions>
在上面的代码中,this.openDialog()
当您在 2 秒后打开页面时会显示对话框。但是我想在用户不活动 5 分钟时显示弹出窗口。