-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
275 lines (269 loc) · 10.7 KB
/
index.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>PostbirdAlertBox.js - 原生javascript弹框插件</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<script src="./js/postbirdAlertBox.min.js"></script>
<link rel="stylesheet" href="./css/postbirdAlertBox.css">
<style>
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="jumbotron" style="margin-top:0;margin-bottom:0;">
<h1>PostbirdAlertBox.js</h1>
<h2 class="text-right">—— 原生javascript弹框插件</h2>
<p>
<a href="https://github.com/postbird/PostbirdAlertBox.js" class="btn btn-primary ">Github:https://github.com/postbird/PostbirdAlertBox.js</a>
</p>
<p>
<a href="https://gitee.com/postbird/PostbirdAlertBox.js" class="btn btn-primary ">GitOSC:https://gitee.com/postbird/PostbirdAlertBox.js</a>
</p>
<blockquote>注:引入Bootstrap.min.css仅提供index.html页面内容显示,无其他作用</blockquote>
</div>
</div>
<div class="container">
<div class="row">
<div class="page-header">
<h2>Alert</h2>
<small>点击按钮查看效果</small>
</div>
<div>
<button onclick="showAlert()" class="btn btn-success ">Alert</button>
</div>
<hr>
<div>
<pre><code>PostbirdAlertBox.alert({
'title': '提示标题',
'content': '提示内容主体',
'okBtn': '好的',
'contentColor': 'red',
'onConfirm': function () {
console.log("回调触发后隐藏提示框");
alert("回调触发后隐藏提示框");
}
});</code></pre>
</div>
</div>
<div class="row">
<div class="page-header">
<h2>Confirm</h2>
<small>点击按钮查看效果</small>
</div>
<div>
<button onclick="showConfirm()" class="btn btn-primary">Confirm</button>
</div>
<hr>
<div>
<pre><code>PostbirdAlertBox.confirm({
'title': '提示标题',
'content': '离开本页面进行跳转',
'okBtn': '好的',
'contentColor': 'red',
'onConfirm': function () {
console.log("OK - 回调触发后隐藏提示框");
alert("OK - 回调触发后隐藏提示框");
},
'onCancel': function () {
console.log("Cancel-回调触发后隐藏提示框");
alert("Cancel-回调触发后隐藏提示框");
}
});</code></pre>
</div>
</div>
<div class="row">
<div class="page-header">
<h2>Prompt</h2>
<small>点击按钮查看效果</small>
</div>
<div>
<button onclick="showPrompt()" class="btn btn-danger">Prompt</button>
</div>
<hr>
<div>
<pre><code>PostbirdAlertBox.prompt({
'title': '请输入姓名',
'okBtn': '提交',
onConfirm: function (data) {
console.log("输入框内容是:" + data);
alert("输入框内容是:" + data);
},
onCancel: function (data) {
console.log("输入框内容是:" + data);
alert("输入框内容是:" + data);
},
});</code></pre>
</div>
</div>
<div class="row">
<div class="page-header">
<h2>使用说明</h2>
</div>
<div class="list-group">
<li class="list-group-item">
1. 引入js 和 css 文件
</li>
<li class="list-group-item">
2. 通过全局对象 PostbirdAlertBox 调用相关方法,三个方法为: <span class="text-success">PostbirdAlertBox.alert({});</span> <span class="text-primary">PostbirdAlertBox.confirm({});</span> <span class="text-danger"> PostbirdAlertBox.prompt({});</span>
</li>
</div>
</div>
<div class="row">
<div class="page-header">
<h2>配置参数</h2>
</div>
<table class="table table-hover table-striped">
<thead>
<tr>
<th>参数属性</th>
<th>意义</th>
<th>适用方法</th>
<th>是否必须</th>
</tr>
</thead>
<tbody>
<tr>
<td>title</td>
<td>弹框标题</td>
<td>alert、confirm(不适用于prompt)</td>
<td>否,默认 : 提示信息</td>
</tr>
<tr>
<td>promptTitle</td>
<td>prompt标题</td>
<td>prompt</td>
<td>否,默认 :请输入内容</td>
</tr>
<tr>
<td>content</td>
<td>提示内容主体</td>
<td>alert、confirm(不适用于prompt)</td>
<td>否,默认 : 提示内容</td>
</tr>
<tr>
<td>contentColor</td>
<td>提示内容颜色</td>
<td>alert、confirm</td>
<td>否,默认 : #000000</td>
</tr>
<tr>
<td>okBtn</td>
<td>确认按钮文字</td>
<td>alert、confirm (不适用于prompt)</td>
<td>否,默认 : 好的</td>
</tr>
<tr>
<td>promptOkBtn</td>
<td>prompt确认按钮文字</td>
<td>prompt</td>
<td>否,默认 : 确认</td>
</tr>
<tr>
<td>okBtnColor</td>
<td>确认按钮颜色</td>
<td>alert、confirm、prompt</td>
<td>否,默认 : #0e90d2</td>
</tr>
<tr>
<td>cancelBtn</td>
<td>取消按钮文字</td>
<td>alert、confirm、prompt</td>
<td>否,默认 : 取消</td>
</tr>
<tr>
<td>onConfirm</td>
<td>确认按钮事件</td>
<td>alert、confirm、prompt(存在参数data)</td>
<td>否,默认 : 不触发事件</td>
</tr>
<tr>
<td>onCancel</td>
<td>取消按钮事件</td>
<td>alert、confirm、prompt(存在参数data)</td>
<td>否,默认 : 不触发事件</td>
</tr>
</tbody>
</table>
</div>
<div class="row">
<div class="page-header">
<h2>参数说明</h2>
</div>
<div class="list-group">
<li class="list-group-item">
1. title 和 promptTitle 分开主要是为了方便不传递title的情况,prompt和alert、confirm的显示文字不同
</li>
<li class="list-group-item">
2. okBtn 和 promptOkBtn 分开同样是为了默认情况下,prompt和alert、confirm的显示文字不同
</li>
<li class="list-group-item">
3. 正如前面的示例代码中,prompt的回调函数,会给予一个data参数,用来获取用户输入的内容
</li>
</div>
</div>
<div class="row">
<div class="page-header">
<h2>License</h2>
</div>
<div class="list-group">
<li class="list-group-item">
MIT
</li>
</div>
</div>
<div class="row text-center">
<div class="page-header">
<a href="http://www.ptbird.cn">www.ptbird.cn</a>
</div>
</div>
</div>
</body>
<script>
function showAlert() {
PostbirdAlertBox.alert({
'title': '提示',
'content': '提示内容主体',
'okBtn': '好的',
'contentColor': 'red',
'onConfirm': function () {
console.log("回调触发后隐藏提示框");
alert("回调触发后隐藏提示框");
}
});
}
function showConfirm() {
PostbirdAlertBox.confirm({
'title': '提示',
'content': '离开本页面进行',
'okBtn': '好的',
'contentColor': 'red',
'onConfirm': function () {
console.log("OK - 回调触发后隐藏提示框");
alert("OK - 回调触发后隐藏提示框");
},
'onCancel': function () {
console.log("Cancel-回调触发后隐藏提示框");
alert("Cancel-回调触发后隐藏提示框");
}
});
}
function showPrompt() {
PostbirdAlertBox.prompt({
'title': '请输入姓名',
'okBtn': '提交',
onConfirm: function (data) {
console.log("输入框内容是:" + data);
alert("输入框内容是:" + data);
},
onCancel: function (data) {
console.log("输入框内容是:" + data);
alert("输入框内容是:" + data);
},
});
}
</script>
</html>