$(function () { // //二级菜单 // $('.nav-ul>ul>li').hover(function(){ // console.log($(this).children("ul")) // $(this).children("ul").stop().slideDown(); // },function(){ // $(this).children("ul").stop().slideUp(); // }) // //三级菜单 // $('.nav-two>li').hover(function(){ // $(this).children("ul").stop().show(); // },function(){ // $(this).children("ul").stop().hide(); // }) //二级菜单 $('.nav-ul>ul>li').mouseenter(function () { $(this).children("ul").stop().slideDown(); $(this).children("a").addClass('nav-Hover'); }); $('.nav-ul>ul>li').mouseleave(function () { $(this).children("ul").stop().slideUp(); $(this).children("a").removeClass('nav-Hover'); }); //三级菜单 $('.nav-two>li').mouseenter(function () { $(this).children("ul").stop().show(); $(this).children("a").addClass('nav-two-Hover'); }); $('.nav-two>li').mouseleave(function () { $(this).children("ul").stop().hide(); $(this).children("a").removeClass('nav-two-Hover'); }); //根据滚动条高度固定导航栏 var nav = $('.nav-ul'); $(window).scroll(function () { var topp = $(document).scrollTop(); console.log(topp); if (topp > 50) { $(nav).addClass('navFixed') } else if (topp < 50) { $(nav).removeClass('navFixed') } }) }) // window.onscroll = function(){ // var head = document.getElementsByClassName('header')[0]; // var div = head.children[0]; // // console.log(head.children[0]); // if(window.scrollY <= 0){ // head.style.background = 'none'; // div.style.background = 'none'; // div.style.boxShadow = 'none'; // }else{ // head.style.background = 'white'; // div.style.background = 'white'; // div.style.boxShadow = '0 1px 7px 1px #e9e9e9' // } // } // $(function(){ // $(window).scroll(function(){ // var topp = $(document).scrollTop(); // if(topp <= 0 ){ // $('.header').css('background','none'); // $('.header>div').css('background','none'); // $('.header>div').css('boxShadow','none') // }else if(topp>0){ // $('.header').css('background','white'); // $('.header>div').css('background','white'); // $('.header>div').css('boxShadow','0 1px 7px 1px #e9e9e9'); // } // }) // })