我想让toastr的弹出窗口看起来与Bootstrap警报相同或非常接近.我该怎么做?
解决方法
包括用于Bootstrap警报的CSS,然后在toastr选项中,更改toastClass和iconClasses的值:
toastr.options = { toastClass: 'alert',iconClasses: { error: 'alert-error',info: 'alert-info',success: 'alert-success',warning: 'alert-warning' } },
然后在toastr的CSS中,从#toast-container>中删除dropshadow div,最终看起来像:
#toast-container > div { width: 300px; }