codecamp

Mint UI 简单的消息提示框-Toast

简短的消息提示框,支持自定义位置、持续时间和样式。

引入

import { Toast } from 'mint-ui';

例子

基本用法

Toast('提示信息');

在调用 ​Toast​ 时传入一个对象即可配置更多选项

Toast({
  message: '提示',
  position: 'bottom',
  duration: 5000
});

若需在文字上方显示一个 icon 图标,可以将图标的类名作为​ iconClass ​的值传给 Toast(图标需自行准备)

Toast({
  message: '操作成功',
  iconClass: 'icon icon-success'
});

执行​ Toast​ 方法会返回一个 Toast 实例,每个实例都有 ​close​ 方法,用于手动关闭 Toast

let instance = Toast('提示信息');
setTimeout(() => {
  instance.close();
}, 2000);

API

参数 说明 类型 可选值 默认值
message 文本内容 String
position Toast 的位置 String 'top'
'bottom'
'middle'
'middle'
duration 持续时间(毫秒),若为 -1 则不会自动关闭 Number 3000
className Toast 的类名。可以为其添加样式 String
iconClass icon 图标的类名 String


Mint UI 快速上手教程-Quick
Mint UI 加载提示框-Indicator
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }