$(function () { // 导航高亮 YangFangLing 2019年7月3日 $(".nav-list").slide({ type:"menu", titCell:"li",delayTime:300,triggerTime:0,returnDefault:true,}); // 导航悬浮 YangFangLing 2019年7月3日 /*$(window).scroll(function(){ if($(window).scrollTop() >= 200){ $(".HeaderBot").addClass('cur'); } else{ $(".HeaderBot").removeClass('cur'); } });*/ //滚动监测动画 if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))){ new WOW().init(); }; // 导航下拉 YangFangLing 2019年4月29日 $("#navBox li").hover(function(){ $(this).find(".NavDown").stop(true,true).slideDown(500); },function(){ $(this).find(".NavDown").stop().slideUp(500); }) })