Toastr JS Setting fadeAway value

心已入冬 提交于 2019-11-29 05:31:44
John Papa

Before you call toastr.info, set the option you choose. For example:

toastr.options.fadeOut = 2500;

You can see many of the options in the demo here: toastr demo

These are the defaults. You can override many of them:

options = {
  tapToDismiss: true,
  toastClass: 'toast',
  containerId: 'toast-container',
  debug: false,
  fadeIn: 300,
  fadeOut: 1000,
  extendedTimeOut: 1000,
  iconClass: 'toast-info',
  positionClass: 'toast-top-right',
  timeOut: 5000, // Set timeOut to 0 to make it sticky
  titleClass: 'toast-title',
  messageClass: 'toast-message'
}

With version 2.0.3 you do the following to make the toastr display longer:

toastr.success('Hello World', 'New Message', { timeOut: 9500 });

You can also pass any options in a parameter. But the parameter must be an object. For your example you can use this:

toastr.info('Processing...', { fadeAway: 1000 });

PS: also keep in mind that fadeAway is deprecated in the current version (2.0.3).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!