header.js
1.58 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
/**
* Created by zzf on 2014/11/5.
*/
define(function( require, exports, module ) {
var _Event = require( 'event' );
require( 'menuaim' );
$(function(){
//导航菜单
var Nav = {
open:function( target ){
var _target = $( target );
_target.addClass( 'current' ).siblings().removeClass( 'current' );
},
close:function( target ){
var _target = $( target );
},
closeAll:function( ){
$( '#menu-box' ).find( '>li.current' ).removeClass( 'current' );
}
}
if( $( '#menu-box' ).length > 0 ){
$( '#menu-box' ).menuAim({
enter: Nav.open,
activate: Nav.open,
deactivate:Nav.close,
exitMenu:Nav.closeAll
});
$( '.multistage-menu' ).hover(function(){
var _this = $( this );
var menuList = $(this).find(".menu-list");
if( menuList.is( ':hidden' ) && !$( _this ).hasClass( 'indexNav' ) ){
menuList.show();
$( _this ).addClass( 'selected' );
}
},function(){
var _this = $( this );
var menuList = $(this).find(".menu-list");
if( !menuList.is( ':hidden' ) && !$( _this ).hasClass( 'indexNav' ) ){
menuList.hide();
$( _this ).removeClass( 'selected' );
}
});
}
});
});