# toastr **Repository Path**: junstar/toastr ## Basic Information - **Project Name**: toastr - **Description**: Jquery非堵塞消息通知插件 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: https://wispx.gitee.io/toastr/demo.html - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 9 - **Created**: 2019-03-28 - **Last Updated**: 2022-05-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Toastr ### 项目介绍 非堵塞消息通知插件 ### 演示 https://wispx.gitee.io/toastr/demo.html ### 使用方法 注意 本插件依赖Jquery 下载项目,引入jquery和src目录下的css/toastr.css和js/tosatr.js ```html ``` ##### 全局配置 ```javascript $.toastr.config({ time: 3000, position: 'top-right', size: '', callback: function () {} }); ``` 配置说明:
| 配置名 | 配置说明 | 可选参数 | 默认值 |
|---|---|---|---|
| time | 关闭时间(毫秒) | 1000~999999之间的纯数字 | 3000 |
| position | 显示位置 | top-left,top-center,top-right,right-bottom,bottom-center,left-bottom | top-right |
| size | 大小 | lg,sm,xs | 空(正常大小) |
| callback | 默认关闭后的回调 | function | 无 |