YuhangYang (Talk | contribs) |
YuhangYang (Talk | contribs) |
||
Line 3: | Line 3: | ||
$(".header .nav .mainnav").eq(1).hover(function(){ | $(".header .nav .mainnav").eq(1).hover(function(){ | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
$(".header .nav .Project span").css("color","#FAEE0D"); | $(".header .nav .Project span").css("color","#FAEE0D"); | ||
$(".header .nav .Project .unify").stop().slideDown(); | $(".header .nav .Project .unify").stop().slideDown(); | ||
Line 18: | Line 10: | ||
}); | }); | ||
− | $(".header .nav .mainnav").eq( | + | $(".header .nav .mainnav").eq(2).hover(function(){ |
$(".header .nav .Application span").css("color","#FAEE0D"); | $(".header .nav .Application span").css("color","#FAEE0D"); | ||
$(".header .nav .Application .unify").stop().slideDown(); | $(".header .nav .Application .unify").stop().slideDown(); | ||
Line 26: | Line 18: | ||
}); | }); | ||
− | $(".header .nav .mainnav").eq( | + | $(".header .nav .mainnav").eq(3).hover(function(){ |
$(".header .nav .Human_Practices span").css("color","#FAEE0D"); | $(".header .nav .Human_Practices span").css("color","#FAEE0D"); | ||
$(".header .nav .Human_Practices .unify").stop().slideDown(); | $(".header .nav .Human_Practices .unify").stop().slideDown(); | ||
Line 34: | Line 26: | ||
}); | }); | ||
− | $(".header .nav .mainnav").eq( | + | $(".header .nav .mainnav").eq(4).hover(function(){ |
$(".header .nav .Achievement span").css("color","#FAEE0D"); | $(".header .nav .Achievement span").css("color","#FAEE0D"); | ||
$(".header .nav .Achievement .unify").stop().slideDown(); | $(".header .nav .Achievement .unify").stop().slideDown(); | ||
Line 40: | Line 32: | ||
$(".header .nav .Achievement span").css("color","#fff"); | $(".header .nav .Achievement span").css("color","#fff"); | ||
$(".header .nav .Achievement .unify").stop().slideUp(); | $(".header .nav .Achievement .unify").stop().slideUp(); | ||
+ | }); | ||
+ | |||
+ | $(".header .nav .mainnav").eq(5).hover(function(){ | ||
+ | $(".header .nav .Team span").css("color","#FAEE0D"); | ||
+ | $(".header .nav .Team .unify").stop().slideDown(); | ||
+ | },function(){ | ||
+ | $(".header .nav .Team span").css("color","#fff"); | ||
+ | $(".header .nav .Team .unify").stop().slideUp(); | ||
}); | }); | ||
}); | }); |
Revision as of 01:59, 25 September 2017
/*nav*/ $(function(){
$(".header .nav .mainnav").eq(1).hover(function(){ $(".header .nav .Project span").css("color","#FAEE0D"); $(".header .nav .Project .unify").stop().slideDown(); },function(){ $(".header .nav .Project span").css("color","#fff"); $(".header .nav .Project .unify").stop().slideUp(); });
$(".header .nav .mainnav").eq(2).hover(function(){ $(".header .nav .Application span").css("color","#FAEE0D"); $(".header .nav .Application .unify").stop().slideDown(); },function(){ $(".header .nav .Application span").css("color","#fff"); $(".header .nav .Application .unify").stop().slideUp(); });
$(".header .nav .mainnav").eq(3).hover(function(){ $(".header .nav .Human_Practices span").css("color","#FAEE0D"); $(".header .nav .Human_Practices .unify").stop().slideDown(); },function(){ $(".header .nav .Human_Practices span").css("color","#fff"); $(".header .nav .Human_Practices .unify").stop().slideUp(); });
$(".header .nav .mainnav").eq(4).hover(function(){ $(".header .nav .Achievement span").css("color","#FAEE0D"); $(".header .nav .Achievement .unify").stop().slideDown(); },function(){ $(".header .nav .Achievement span").css("color","#fff"); $(".header .nav .Achievement .unify").stop().slideUp(); });
$(".header .nav .mainnav").eq(5).hover(function(){ $(".header .nav .Team span").css("color","#FAEE0D"); $(".header .nav .Team .unify").stop().slideDown(); },function(){ $(".header .nav .Team span").css("color","#fff"); $(".header .nav .Team .unify").stop().slideUp(); });
});