-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.equalHeightInRow.js
450 lines (320 loc) · 13.4 KB
/
jquery.equalHeightInRow.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
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
/***
*
* jquery.equalHeightInRow v2.0
* The jQuery plugin for equal height of the elements in the row
* Asanov Ruslan //github.com/AsanovRuslan
* Released under the MIT license - http://opensource.org/licenses/MIT
* EXAMPLE
* $('.block').equalHeightInRow();
*
* Equal height internal child elements
* $('.block').equalHeightInRow({ child: ['.child1,.child2']});
*
***/
;(function( $ ) {
var methods = {
/**
* Handler load images
* @param {object} image
* @param {object} deferred
* @returns {object} - Deferred object
*/
imageLoad : function( image, deferred ) {
var _this = image.get(0);
image.each(function() {
if( image.is('img') ) {
image.one("load", function() {
// Notifies that loading image is completed
deferred.notify();
});
// If image is not loaded
if( (!_this.complete) || (typeof _this.naturalWidth !== "undefined" && _this.naturalWidth === 0) ) {
return false;
} else {
image.trigger('load');
}
}
});
return deferred;
},
/**
* Handler load row
* @param {object} row - line items
* @returns {object} - Deferred object
*/
rowLoad : function( row ) {
var rowDeferred = $.Deferred(function() {
this.count = 0;
});
var rowLength = row.length;
row.each(function() {
var $this = $(this);
var images = $this.find('img');
var imagesLength = images.length;
var imageDeferred = $.Deferred(function() {
this.count = 0;
});
imageDeferred.always(function() {
// Notifies that loading image in block is completed
setTimeout(function() {
rowDeferred.notify();
}, 0)
});
if ( imagesLength == 0 ) {
imageDeferred.resolve();
} else {
imageDeferred.progress(function() {
imageDeferred.count++;
// If the loading images in a row completed
if( imageDeferred.count == imagesLength ) {
imageDeferred.resolve();
}
});
// Process each image individually
images.each(function() {
methods.imageLoad($(this), imageDeferred);
});
}
});
return rowDeferred.progress(function() {
rowDeferred.count++;
// Notifies that loading image in row is completed
if( rowDeferred.count == rowLength ) {
rowDeferred.resolve();
}
}).promise();
},
/**
* Count elements in a row
* @param {object} elements
* @param {boolean} forEachRow
* @returns {*}
*/
countElementInRow : function( elements, forEachRow ) {
var count = 0;
var positionTop = elements.eq(0).position().top;
if( forEachRow ) {
var countArray = [];
elements.each(function( index ) {
if( $(this).position().top > positionTop ) {
positionTop = elements.eq(index).position().top;
countArray.push(count);
count = 0;
}
count++;
});
// last row
countArray.push(count);
// return the number of elements in a row
return countArray;
}
elements.each(function( index ) {
if( $(this).position().top > positionTop ) {
count = index;
return false;
}
});
return count;
},
/**
* Get max height
* @param elements
* @returns {number}
*/
getMaxHeight : function( elements ) {
var height = 0;
var eachHeight = 0;
var padding = 0;
var border = 0;
var $this = null;
// Resetting height elements for real values
elements.css({
'height' : '',
'min-height' : ''
});
elements.each(function() {
$this = $(this);
if ( $this.css('box-sizing') != "border-box" ) {
padding = parseInt($this.css('padding-top')) + parseInt($this.css('padding-bottom'));
border = parseInt($this.css('border-top') || 0) + parseInt($this.css('border-bottom') || 0);
eachHeight = $(this).outerHeight() - padding - border;
} else {
eachHeight = $(this).outerHeight();
}
if( eachHeight > height ) {
height = eachHeight;
}
});
return height;
},
/**
* Set height
* @param elements
* @param height
* @returns {{elements: {object}, height: {number}}}
*/
setHeight : function( elements, height ) {
if( elements.eq(0).css('display') == "table-cell" ) {
elements.css('height', height);
} else {
elements.css('min-height', height);
}
return {
elements : elements,
height : height
}
}
};
$.fn.equalHeightInRow = function( options ) {
var settings = $.extend({
// Child elements. Example ['.child1','.child2']
child : [],
// Apply for each row
eachRow : false,
// Execute after full page load
windowLoad : false,
// Reset on full page load, callback "onLoad" not call
windowLoadReset : false,
// Apply only child
applyOnlyChild : false,
// Set custom parent
parent : false,
//CALLBACKS
// Before assigning height in the row
onRowBefore : function() {},
// After assigning height in the row
onRowAfter : function() {},
// Before the resize event
onResizeBefore : function() {},
// After the resize event
onResizeAfter : function() {},
// Executes immediately after plugin is fully loaded
onLoad : function() {}
}, options);
var element = this;
var wrap = settings.parent ? $(element).closest(settings.parent) : $(element).parent();
var pluginLoading = false;
if( !element.length ) {
return false;
}
function init() {
// Loop each parent elements
wrap.each(function() {
var setup = {
thisWrap : $(this),
thisElement : $(this).find(element),
rowCount : 1
};
// Amount elements in a row
setup.amountInRow = methods.countElementInRow(setup.thisElement, settings.eachRow) || 0;
// If needed calculate for each line
if( settings.eachRow ) {
var count = 1;
var current = 0;
var el = [];
setup.thisElement.each(function( index ) {
// Add each line item in the array
el.push(this);
// If you are on the last item in a row
// or if it is the last element in the parent
if( count == setup.amountInRow[current] || !setup.thisElement[index + 1] ) {
var $el = $(el);
settings.onRowBefore($el);
methods.rowLoad($el).always(function() {
// First, set the height of the child elements
for( var i = 0; i < settings.child.length; i++ ) {
methods.setHeight(
$el.find(settings.child[i]),
methods.getMaxHeight($el.find(settings.child[i]))
);
}
// Sets the height the element itself
if( !settings.applyOnlyChild ) {
methods.setHeight($el, methods.getMaxHeight($el));
}
settings.onRowAfter($el);
});
// Clear the array elements in the jump to a new line
el = [];
count = 0;
current++;
}
count++;
});
return true;
} else {
// Amount row in a parent
setup.rowCount = Math.ceil(setup.thisElement.length / setup.amountInRow);
// If the amount of rows > 1
if( setup.rowCount > 1 ) {
var el = [];
setup.thisElement.each(function( index ) {
// Add each line item in the array
el.push(this);
// If you are on the last item in a row
// or if it is the last element in the parent
if( (index + 1) % setup.amountInRow == 0 || !setup.thisElement[index + 1] ) {
var $el = $(el);
settings.onRowBefore($el);
methods.rowLoad($el).always(function() {
// First, set the height of the child elements
for( var i = 0; i < settings.child.length; i++ ) {
methods.setHeight(
$el.find(settings.child[i]),
methods.getMaxHeight($el.find(settings.child[i]))
);
}
// Sets the height the element itself
if( !settings.applyOnlyChild ) {
methods.setHeight($el, methods.getMaxHeight($el));
}
settings.onRowAfter($el);
});
// Clear the array elements in the jump to a new line
el = [];
}
});
return true;
} else if( setup.rowCount == 1 ) { // If the amount of rows == 1
settings.onRowBefore(setup.thisElement);
methods.rowLoad($el).always(function() {
// First, set the height of the child elements
for( var i = 0; i < settings.child.length; i++ ) {
methods.setHeight(
setup.thisWrap.find(settings.child[i]),
methods.getMaxHeight(setup.thisWrap.find(settings.child[i]))
);
}
// Sets the height the element itself
methods.setHeight(
setup.thisElement,
methods.getMaxHeight(setup.thisWrap.find(setup.thisElement))
);
settings.onRowAfter(setup.thisElement);
});
}
}
});
// That did not work when you restart
if( !pluginLoading ) {
settings.onLoad(element);
pluginLoading = true;
}
}
if( settings.windowLoad ) {
$(window).on('load', init);
} else {
init();
if( settings.windowLoadReset ) {
$(window).on('load', init);
}
}
// Restarting when resize
$(window).on('resize orientationchange', function() {
settings.onResizeBefore(element);
init();
settings.onResizeAfter(element);
});
return element;
};
})(jQuery);