We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9123eac commit b342504Copy full SHA for b342504
README.md
@@ -394,4 +394,22 @@ bDialog.toast('your message',{
394
395
bDialog.mark('please wait for a moment...');//show a mask and custom text
396
```
397
+- **toast**
398
+ *param*
399
+ - message
400
+ - params
401
+ ```js
402
+ //show a corner toast dialog, default position on bottomRight
403
+ bDialog.toast('your message');
404
+ bDialog.toast('your message',{
405
+ //toast dialog type
406
+ messageType : 'warning',
407
+ //show dialog in topleft position
408
+ position : 'topLeft',
409
+ //don't show close button
410
+ dialogCloseButton : false,
411
+ //auto close dialog time(second),default 3s
412
+ closeTime : 0
413
+ });
414
+ ```
415
0 commit comments