-
Notifications
You must be signed in to change notification settings - Fork 1
/
jquery-alert.js
219 lines (193 loc) · 6.98 KB
/
jquery-alert.js
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
/*
* Jquery Message插件
* 使用例子 :
* $.alert("提示内容",{
* title : "标题",
* position : ['left', [-0.1,0]]
* })
* 也可以这样使用
* $.alert("提示内容","标题");
* 位置请使用
* top-left,top-right,bottom-left,bottom-right,center 大小写都可以哦
*/
(function ($) {
$.alert_ext = {
// 默认配置
defaults: {
autoClose: true, // 自动关闭
closeTime: 5000, // 自动关闭时间,不少于1000
withTime: false, // 添加计时 会在文字后面添加 ...10
type: 'danger', // 提示类型
position: ['center', [-0.42, 0]], // 位置,第一个写位置,英文哦,后面是偏移,如果是1跟-1之间为百分比
title: false, // 标题
close: '', // 需绑定关闭事件滴按钮
speed: 'normal', // 速度
isOnly: true, //是否只出现一个
minTop: 10, //最小Top
onShow: function () {
}, // 打开后回调
onClose: function () {
} // 关闭后回调
},
// 提示框模版
tmpl: '<div class="alert alert-dismissable ${State}"><button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button><h4 style="white-space: nowrap;">${Title}</h4><p>${Content}</p></div>',
// 初始化函数
init: function (msg, options) {
this.options = $.extend({}, this.defaults, options);
this.create(msg);
this.set_css();
this.bind_event();
return this.alertDiv;
},
template: function (tmpl, data) {
$.each(data, function (k, v) {
tmpl = tmpl.replace('${' + k + '}', v);
});
return $(tmpl);
},
// 创建提示框
create: function (msg) {
this.alertDiv = this.template(this.tmpl, {
State: 'alert-' + this.options.type,
Title: this.options.title,
Content: msg
}).hide();
if (!this.options.title) {
$('h4', this.alertDiv).remove();
$('p', this.alertDiv).css('margin-right', '15px');
}
if (this.options.isOnly) {
$('body > .alert').remove();
}
this.alertDiv.appendTo($('body'));
},
// 设置样式
set_css: function () {
var alertDiv = this.alertDiv;
// 初始化样式
alertDiv.css({
'position': 'fixed',
'z-index': 10001 + $(".alert").length
});
// IE6兼容
var ie6 = 0;
if ($.browser && $.browser.msie && $.browser.version == '6.0') {
alertDiv.css('position', 'absolute');
ie6 = $(window).scrollTop();
}
// 位置设置提取
var position = this.options.position,
pos_str = position[0].split('-'),
pos = [0, 0];
if (position.length > 1) {
pos = position[1];
}
// 偏移百分比检测
if (pos[0] > -1 && pos[0] < 1) {
pos[0] = pos[0] * $(window).height();
}
if (pos[1] > -1 && pos[1] < 1) {
pos[1] = pos[1] * $(window).width();
}
// 位置设置
for (var i in pos_str) {
if ($.type(pos_str[i]) !== 'string') {
continue;
}
var str = pos_str[i].toLowerCase();
if ($.inArray(str, ['left', 'right']) > -1) {
alertDiv.css(str, pos[1]);
} else if ($.inArray(str, ['top', 'bottom']) > -1) {
alertDiv.css(str, pos[0] + ie6);
} else {
alertDiv.css({
'top': ($(window).height() - alertDiv.outerHeight()) / 2 + pos[0] + ie6,
'left': ($(window).width() - alertDiv.outerWidth()) / 2 + pos[1]
});
}
}
if (parseInt(alertDiv.css('top')) < this.options.minTop) {
alertDiv.css('top', this.options.minTop);
}
},
// 绑定事件
bind_event: function () {
this.bind_show();
this.bind_close();
if ($.browser && $.browser.msie && $.browser.version == '6.0') {
this.bind_scroll();
}
},
// 显示事件
bind_show: function () {
var ops = this.options;
this.alertDiv.fadeIn(ops.speed, function () {
ops.onShow($(this));
});
},
// 关闭事件
bind_close: function () {
var alertDiv = this.alertDiv,
ops = this.options,
closeBtn = $('.close', alertDiv).add($(this.options.close, alertDiv));
closeBtn.bind('click', function (e) {
alertDiv.fadeOut(ops.speed, function () {
$(this).remove();
ops.onClose($(this));
});
e.stopPropagation();
});
// 自动关闭绑定
if (this.options.autoClose) {
var time = parseInt(this.options.closeTime / 1000);
if (this.options.withTime) {
$('p', alertDiv).append('<span>...<em>' + time + '</em></span>');
}
var timer = setInterval(function () {
$('em', alertDiv).text(--time);
if (!time) {
clearInterval(timer);
closeBtn.trigger('click');
}
}, 1000);
}
},
// IE6滚动跟踪
bind_scroll: function () {
var alertDiv = this.alertDiv,
top = alertDiv.offset().top - $(window).scrollTop();
$(window).scroll(function () {
alertDiv.css("top", top + $(window).scrollTop());
})
},
// 检测是否为手机浏览器
check_mobile: function () {
var userAgent = navigator.userAgent;
var keywords = ['Android', 'iPhone', 'iPod', 'iPad', 'Windows Phone', 'MQQBrowser'];
for (var i in keywords) {
if (userAgent.indexOf(keywords[i]) > -1) {
return keywords[i];
}
}
return false;
}
};
$.alert = function (msg, arg) {
if ($.alert_ext.check_mobile()) {
alert(msg);
return;
}
if (!$.trim(msg).length) {
return false;
}
if ($.type(arg) === "string") {
arg = {
title: arg
}
}
if (arg && arg.type == 'error') {
arg.type = 'danger';
}
return $.alert_ext.init(msg, arg);
}
})(jQuery);