toastrjs悬停后我找不到任何正确的方法来更新计时器。我确定 aextendedTimeOut到 0,toastr当我将鼠标悬停在它上面时不关闭它。timeOut oftoastr是 10000 毫秒,但是当我完成悬停时,toastr立即隐藏起来。toastr在我完成悬停后显示10000 毫秒的正确方法是什么。
我的 toastr 属性示例:
const inboxToastr = toastr;
inboxToastr.info(data.bubbleData, title, {
"tapToDismiss": false,
"closeButton": true,
"newestOnTop": false,
"progressBar": false,
"positionClass": "toast-bottom-left", //position
"preventDuplicates": false,
"onclick": null,
"showDuration": "300",
"hideDuration": "1000",
"timeOut": "10000",
"extendedTimeOut": "0",
"hideEasing": "linear",
"iconClass": "background-gray"
});
Run Code Online (Sandbox Code Playgroud)