bootstrap.progress.js
782 Bytes
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
/**
* 显示一个进度条
* 作者:黄平
* 日期:2016-04-29
*/
(function($) {
$.fn.progress = function(options, param) {
var self = this;
if (typeof (options) == "string") {
var method = $.fn.progress.methods[options];
if (method){
return method.call(this, param);
}
}
return this.each(function() {
var opt = $.extend({}, $.fn.progress.defaults, options);
self.data("progress", opt);
_createProgress(self);
});
};
/**
* 生成progress
*/
function _createProgress(jq) {
var opt = jq.data("progress");
}
//方法
$.fn.progress.methods = {
};
//事件
$.fn.progress.event = {
onLoadSuccess : function(data) {}
};
//属性
$.fn.progress.defaults = $.extend({}, $.fn.progress.event, {
});
})(jQuery);