标签:cdata 高度定制 图标 单位 bow ati value 删除 section
SweetAlert中文
让我们来比较看一下错误消息的显示。第一个使用了内置的alert,第二个使用了sweetAlert。
alert("哎呦……出错了!");
sweetAlert("哎呦……", "出错了!","error");
非常漂亮吧?无论你是在电脑、手机还是平板上,SweetAlert都会在页面上自动居中显示,这看起来非常棒。SweetAlert还可高度定制,正如下面你所看到的。
在这些实例中,我们使用了简称函数swal调用sweetAlert。
标题与文本的信息弹窗
swal("这是一条信息!", "很漂亮,不是吗?")
成功信息弹窗!
swal("干得漂亮!", "你点击了按钮!","success")
警告信息弹窗,“确认”按钮带有一个函数……
swal({ title: "确定删除吗?", text: "你将无法恢复该虚拟文件!", type: "warning", showCancelButton: true, confirmButtonColor: "#DD6B55", confirmButtonText: "确定删除!", closeOnConfirm: false }, function(){ swal("删除!", "你的虚拟文件已经被删除。", "success"); });
…… 给函数传入参数,"取消"按钮也可以执行。
swal({ title: "确定删除吗?", text: "你将无法恢复该虚拟文件!", type: "warning", showCancelButton: true, confirmButtonColor: "#DD6B55", confirmButtonText: "确定删除!", cancelButtonText: "取消删除!", closeOnConfirm: false, closeOnCancel: false }, function(isConfirm){ if (isConfirm) { swal("删除!", "你的虚拟文件已经被删除。", "success"); } else { swal("取消!", "你的虚拟文件是安全的:)", "error"); } });
定时关闭信息弹窗
swal({ title: "自动关闭弹窗!", text: "2秒后自动关闭。", timer: 2000, showConfirmButton: false });
输入信息弹窗
swal({ title: "输入!", text: "输入一些有趣的话:", type: "input", showCancelButton: true, closeOnConfirm: false, animation: "slide-from-top", inputPlaceholder: "输入一些话" }, function(inputValue){ if (inputValue === false) returnfalse; if (inputValue === "") { swal.showInputError("你需要输入一些话!"); return false } swal("非常好!", "你输入了:" + inputValue,"success"); });
加载(AJAX请求示例)弹窗
swal({ title: "Ajax请求示例", text: "提交运行ajax请求", type: "info", showCancelButton: true, closeOnConfirm: false, showLoaderOnConfirm: true, }, function(){ setTimeout(function(){ swal("Ajax请求完成!"); }, 2000); });
你可以改变SweetAlert的主题样式!
<link rel="stylesheet" type="text/css" href="dist/sweetalert.css"> <link rel="stylesheet" type="text/css" href="themes/twitter.css">
方式 1:通过bower安装:
$ bower install sweetalert
方式 2:通过NPM安装:
$ npm install sweetalert
方式 3:下载sweetAlert的CSS和JavaScript文件。
引用必要的文件初始化插件:
<script src="dist/sweetalert.min.js"></script> <link rel="stylesheet" type="text/css" href="dist/sweetalert.css">
页面加载完成后调用sweetAlert函数
swal({ title: "Error!", text: "Here‘s my error message!", type: "error", confirmButtonText: "Cool" });
你可以使用这些参数,通过一个对象传入到sweetAlert中:
| 默认值 |
|
---|---|---|
title | null (required) | 弹窗的标题。可以通过对象的”title”属性或第一个参数进行传递。 |
text | null | 弹窗的描述。可以通过对象的”text”属性或第二个参数进行传递。 |
type | null | 弹窗的类型。SweetAlert有四个内置类型,可以展示相应的图标动画: "warning","error", "success" and "info"。你也可以设置为"input"类型变成输入弹窗。可以通过对象的”type”属性或第三个参数进行传递。 |
allowEscapeKey | true | 如果设置为true,用户可以通过按下Escape键关闭弹窗。 |
customClass | null | 弹窗的自定义样式,可以通过对象的"customClass"属性进行添加。 |
allowOutsideClick | false | 如果设置为true,用户点击弹窗外部可关闭弹窗。 |
showCancelButton | false | 如果设置为true,“取消”按钮将会显示,用户点击取消按钮会关闭弹窗。 |
showConfirmButton | true | 如果设置为false,“确认”按钮将会隐藏。为了良好的用户体验,最好你设置了定时关闭或者allowOutsideClick为true时才将该参数设置为false。 |
confirmButtonText | "OK" | 使用该参数来修改“确认”按钮的显示文本。如果showCancelButton设置为true,确定按钮的显示文本将会自动使用“Confirm”而不是“OK”。 |
confirmButtonColor | "#AEDEF4" | 使用该参数来修改“确认”按钮的背景颜色(必须是十六进制值)。 |
cancelButtonText | "Cancel" | 使用该参数来修改“取消”按钮的显示文本。 |
closeOnConfirm | true | 设置为false,用户点击“确认”按钮后,弹窗会继续保持打开状态。如果点击“确认”按钮后需要打开另一个SweetAlert弹窗,这是非常有用的。 |
closeOnCancel | true | 这和closeOnConfirm的功能相似,只不过这个是“取消”按钮。 |
imageUrl | null | 为弹窗添加一个自定义的图标。这个参数是一个字符串图片路径。 |
imageSize | "80x80" | 如果设置了imageUrl,你可以使用像素(px)指定图片大小来描述你想要多大的图标。在一个字符串中使用“x”来分割两个值,第一个值是宽度,第二值是高度。 |
timer | null | 自动关闭弹窗的定时器。单位为毫秒(ms)。 |
html | false | 如果你设置为true,参数title和参数text的值将会被html解析显示而不是纯文本。(如果你担心被XSS攻击那就设置为false。) |
animation | true | 如果设置为false, 弹窗的动画将会被禁用。其它字符串值:pop(这是animation设置为true时的默认值), slide-from-top, slide-from-bottom |
inputType | "text" | 当使用type: "input"时,该参数用来改变输入的类型(例如:如果你想让用户输入密码,这可能是有用的)。 |
inputPlaceholder | null | 当使用输入类型时,你可以使用placeholder来帮助用户明白应该输入什么内容。 |
inputValue | null | 当使用type: "input"时,你希望在输入前展示默认值时,可以指定一个默认值。 |
showLoaderOnConfirm | false | 设置为true,当处于加载时会禁用确认按钮并显示为加载样式。 |
SweetAlert还带有一些简单的方法,你可以调用它们:
| 示例 |
|
---|---|---|
setDefaults | swal.setDefaults({ confirmButtonColor: ‘#0000‘ }); | 当调用SweetAlert时,如果你使用很多相同的设置,您可以在程序的开始使用setDefaults设置它们! |
close | swal.close(); | 通过编程的方式将当前打开的SweetAlert弹窗关闭。 |
showInputError | swal.showInputError("Invalid email!"); | 如果用户输入的数据是错误的,在验证输入字段后会显示一个错误的信息。 |
enableButtons, disableButtons | swal.disableButtons(); | 禁用或启用用户点击取消按钮和确认按钮。 |
原文来自于http://mishengqiang.com/sweetalert/
标签:cdata 高度定制 图标 单位 bow ati value 删除 section
原文地址:http://www.cnblogs.com/zsy0712/p/7239883.html