master
Lee 2022-01-11 09:53:48 +08:00
parent 3a55c9b472
commit c5d56567d3
1 changed files with 126 additions and 94 deletions

View File

@ -116,4 +116,36 @@ jQuery(function($){
$('.head .head-btn').removeClass('cur');
$('.head .nav').removeClass('active');
});
// 控制hover背景
$('.nav>li').eq(1).mouseover(function() {
$(".nav-bg.wap-show").show();
}).mouseout(function() {
$(".nav-bg.wap-show").hide();
});
$('.nav>li').eq(2).mouseover(function() {
$(".nav-bg.wap-show").show();
}).mouseout(function() {
$(".nav-bg.wap-show").hide();
});
$('.nav>li').eq(3).mouseover(function() {
$(".nav-bg.wap-show").show();
}).mouseout(function() {
$(".nav-bg.wap-show").hide();
});
$('.nav>li').eq(4).mouseover(function() {
$(".nav-bg.wap-show").show();
}).mouseout(function() {
$(".nav-bg.wap-show").hide();
});
$('.side-nav-item>li').mouseover(function() {
$(".nav-bg.wap-show").show();
}).mouseout(function() {
$(".nav-bg.wap-show").hide();
});
$('.side-nav-item>li').eq(4).mouseover(function() {
$(".nav-bg.wap-show").hide();
});
})