-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery.loadAnimation.js
More file actions
212 lines (167 loc) · 4.22 KB
/
jquery.loadAnimation.js
File metadata and controls
212 lines (167 loc) · 4.22 KB
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
/**
* jquery.loadAnimation 0.2
*
* Copyright (c) 2009 Jan Faessler
*
* Licensed under MIT
* http://www.opensource.org/licenses/mit-license.php
*
* Launch : April 2009
* Version : 0.2
*/
(function($) {
function callFunction(options, name, self)
{
var fn = options[name];
if ($.isFunction(fn))
{
try
{
return fn.call(self);
}
catch (error)
{
if (options.eAlert)
alert("Error calling loadAnimation." + name + ": " + error);
else
throw error;
return false;
}
}
return true;
}
// mask instance (singleton)
var mask = null;
// animated elements
var animated, conf = null;
var origIndex = 0;
// global methods
$.loadAnimation = {
getVersion: function()
{
return [0, 2, 0];
},
getMask: function()
{
return mask;
},
getAnimated: function()
{
return animated;
},
getConf: function()
{
return conf;
},
isStarted: function()
{
return mask && mask.is(":visible");
},
start: function(target, options)
{
// already started ?
if (this.isStarted()) return this;
if (target) {
animated = target;
origIndex = animated.eq(0).css("zIndex");
conf = options;
} else {
target = animated;
options = conf;
}
if (!target || !target.length) return this;
// setup mask if not already done
if (!mask)
{
mask = $('<div id="'+options.maskId+'"></div>');
if (options.image.src != '')
img = $('<img id="'+options.maskId+'_loading_img" />')
.attr('src',options.image.src)
.attr('alt',options.image.alt);
}
// set mask css properties
mask.css({
position: 'absolute',
top: target.offset().top,
left: target.offset().left,
width: target.width(),
height: target.height(),
display: 'none',
opacity: 0,
zIndex: options.zIndex,
backgroundColor: options.color
});
// set image css properities
img.css({
zIndex: options.zIndex+1,
position: 'absolute',
top: (target.height()/2-options.image.size.height/2),
left: (target.width()/2-options.image.size.width/2)
});
// insert image into mask and append mask to body
mask.html(img);
$("body").append(mask);
// onBeforeLoad
if (callFunction(options, "onBeforeLoad", this) === false) return this;
// reveal mask
if (!this.isStarted())
{
mask.css({opacity: 0, display: 'block'}).fadeTo(options.loadSpeed, options.opacity, function()
{
callFunction(options, "onLoad", $.loadAnimation);
});
}
return this;
},
end: function()
{
var self = this;
if (!this.isStarted()) { return self; }
if (callFunction(conf, "onBeforeClose", self) === false) return self;
mask.fadeOut(conf.closeSpeed, function()
{
animated.css({zIndex: $.browser.msie ? origIndex : null});
callFunction(conf, "onClose", self);
});
}
};
// jQuery plugin initialization
$.prototype.loadAnimation = function(conf)
{
// no elements to expose
if (!this.length) return this;
var options = {
eAlert: true,
// mask settings
maskId: 'exposeMask',
loadSpeed: 'slow',
closeSpeed: 'fast',
// css settings
zIndex: 998,
opacity: 0.9,
color: '#ccc',
// image settings
image: {
src: '',
alt: 'loading...',
size: {
width: 100,
height: 10
}
}
};
// save critical options
if (typeof conf == 'string') conf = {color: conf};
if (typeof conf.image == 'string') conf.image = { src: conf.image, alt: options.image.alt, size: options.image.size };
if (conf.image.alt == undefined) conf.image.alt = options.image.alt;
if (conf.image.size == undefined) conf.image.size = options.image.size;
if (conf.image.size.width == undefined) conf.image.size.width = options.image.size.width;
if (conf.image.size.height == undefined) conf.image.size.height = options.image.size.height;
// extend and overwrite standard options with user config
$.extend(options, conf);
// start animation
$.loadAnimation.start(this, options);
// return jQuery object
return this;
};
})(jQuery);