-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdropdown.js
57 lines (56 loc) · 1.81 KB
/
dropdown.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
/*
DropDown for Mootools 1.2.2
(c) 2009 Enrique Erne
MIT License
*/
var DropDown = new Class({ Implements: Options,
options: {
item: 'li',
submenu: 'ul',
animate: 'height',
property: 'getHeight',
modify: 'sum',
over: {duration: 200},
out: {duration: 800},
fixIE: true
},
initialize: function(menu, options){
this.setOptions(options);
var items = ($type(this.options.item) === 'element') ? [this.options.item] : menu.getChildren(this.options.item);
// fix IE quirks
if(Browser.Engine.trident && this.options.fixIE){
menu.getElements(this.options.submenu).each(function(el){
var kids = el.getChildren(($type(this.options.item) === 'element') ? 'li' : this.options.item);
kids.getElement('a').setStyles({
'width': kids.getWidth().max() - ( kids[0].getElement('a').getStyle('padding-left').toInt() + kids[0].getElement('a').getStyle('padding-right').toInt() )
});
}.bind(this));
}
items.each(function(el){
var submenu = el.getElement(this.options.submenu), animate = this.options.animate;
if ($chk(submenu)){
var original = submenu.getChildren('li a')[this.options.property]()[this.options.modify]();
// TAB navigation for IE using the TAB key ->|
if(Browser.Engine.trident) el.getElements('a:first-child, li:last-child a').addEvent('focus', function(){
menu.getElements('li.hover').each(function(elh){
elh.fireEvent('mouseleave');
});
el.fireEvent('mouseenter');
});
submenu.setStyle(animate, 0);
var over = this.options.over, out = this.options.out
el.addEvents({
'mouseenter': function(){
submenu.set('tween', over).tween(animate, original);
el.addClass('hover');
},
'mouseleave': function(){
submenu.set('tween', out).tween(animate, 0);
el.removeClass('hover');
}
});
}
}.bind(this));
}
});