-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfullWidthMenu.js
66 lines (55 loc) · 2.04 KB
/
fullWidthMenu.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
/**
* Rico Leuthold <[email protected]>
*
* Pass a selector or a jQuery object with the items
* that should sum up to the width the plugin is invoked on
*/
(function ($) {
"use strict";
$.fn.fullWidthMenu = function (options) {
var spareWidth,
textLength = 0,
pseudoPadding = 0,
restWidth = 0,
itemsWidth = 0,
menuWidth = this.outerWidth(),
settings = $.extend({
'menuItems' : '#menu ul li',
'menuItemLink' : 'a'
}, options),
menuItems = $(settings.menuItems);
// get item links text widths
menuItems.each(function () {
textLength += $(this).find(settings.menuItemLink).outerWidth();
});
spareWidth = menuWidth - textLength;
pseudoPadding = spareWidth / menuItems.length;
// calculate and set item width
menuItems.each(function () {
$(this).width(function () {
return $(this).width() + Math.floor(pseudoPadding) - parseInt($(this).css('border-left-width'), 10) - parseInt($(this).css('border-right-width'), 10);
});
});
menuItems.each(function () {
itemsWidth += $(this).outerWidth();
});
restWidth = menuWidth - itemsWidth;
// Compensate the pixels (decimals from rounding)
if (restWidth % 2 === 0) {
$(menuItems[0]).outerWidth(function () {
return $(this).outerWidth() + (restWidth / 2);
});
$(menuItems[menuItems.length - 1]).outerWidth(function () {
return $(this).outerWidth() + (restWidth / 2);
});
} else {
$(menuItems[0]).outerWidth(function () {
return $(this).outerWidth() + Math.ceil(restWidth / 2);
});
$(menuItems[menuItems.length - 1]).outerWidth(function () {
return $(this).outerWidth() + Math.floor(restWidth / 2);
});
}
return this;
};
}(jQuery));