-
Notifications
You must be signed in to change notification settings - Fork 285
/
sweetalert.html
165 lines (130 loc) · 5.89 KB
/
sweetalert.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> - Sweet alert</title>
<meta name="keywords" content="">
<meta name="description" content="">
<link rel="shortcut icon" href="favicon.ico"> <link href="css/bootstrap.min.css?v=3.3.6" rel="stylesheet">
<link href="css/font-awesome.css?v=4.4.0" rel="stylesheet">
<!-- Sweet Alert -->
<link href="css/plugins/sweetalert/sweetalert.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/style.css?v=4.1.0" rel="stylesheet">
</head>
<body class="gray-bg">
<div class="wrapper wrapper-content animated fadeInRight">
<div class="row">
<div class="col-sm-12">
<div class="ibox ">
<div class="ibox-title">
<h5>Sweet Alert</h5>
</div>
<div class="ibox-content">
<strong>可以替换JavaScript中alert的插件</strong>
<p>
Sweet Alert 是一个替代传统的 JavaScript Alert 的漂亮提示效果。SweetAlert 自动居中对齐在页面中央,不管您使用的是台式电脑,手机或平板电脑看起来效果都很棒。另外提供了丰富的自定义配置选择,可以灵活控制。项目主页:
<a href="http://t4t5.github.io/sweetalert/" target="_blank">http://t4t5.github.io/sweetalert/</a>
</p>
<div class="row text-center">
<div class="col-sm-6 h-100 p-lg">
<p>基本消息</p>
<button class="btn btn-primary btn-sm demo1">打开示例</button>
</div>
<div class="col-sm-6 h-100 p-lg">
<p>成功提示 </p>
<button class="btn btn-success btn-sm demo2">打开示例</button>
</div>
<div class="col-sm-6 h-100 p-lg">
<p>警告信息</p>
<button class="btn btn-warning btn-sm demo3">打开示例</button>
</div>
<div class="col-sm-6 h-100 p-lg">
<p>通过传参可以自定义取消按钮 </p>
<button class="btn btn-danger btn-sm demo4">打开示例</button>
</div>
</div>
<div class="m-t-md">
<p>
您可以在js中很简单的实用SweetAlert,如添加一个警告框:
</p>
<pre>
$('.demo3').click(function () {
swal({
title: "您确定要删除这条信息吗",
text: "删除后将无法恢复,请谨慎操作!",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "删除",
closeOnConfirm: false
}, function () {
swal("删除成功!", "您已经永久删除了这条信息。", "success");
});
});</pre>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 全局js -->
<script src="js/jquery.min.js?v=2.1.4"></script>
<script src="js/bootstrap.min.js?v=3.3.6"></script>
<!-- 自定义js -->
<script src="js/content.js?v=1.0.0"></script>
<!-- Sweet alert -->
<script src="js/plugins/sweetalert/sweetalert.min.js"></script>
<script>
$(document).ready(function () {
$('.demo1').click(function () {
swal({
title: "欢迎使用SweetAlert",
text: "Sweet Alert 是一个替代传统的 JavaScript Alert 的漂亮提示效果。"
});
});
$('.demo2').click(function () {
swal({
title: "太帅了",
text: "小手一抖就打开了一个框",
type: "success"
});
});
$('.demo3').click(function () {
swal({
title: "您确定要删除这条信息吗",
text: "删除后将无法恢复,请谨慎操作!",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "删除",
closeOnConfirm: false
}, function () {
swal("删除成功!", "您已经永久删除了这条信息。", "success");
});
});
$('.demo4').click(function () {
swal({
title: "您确定要删除这条信息吗",
text: "删除后将无法恢复,请谨慎操作!",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "是的,我要删除!",
cancelButtonText: "让我再考虑一下…",
closeOnConfirm: false,
closeOnCancel: false
},
function (isConfirm) {
if (isConfirm) {
swal("删除成功!", "您已经永久删除了这条信息。", "success");
} else {
swal("已取消", "您取消了删除操作!", "error");
}
});
});
});
</script>
</body>
</html>