$(document).ready(function() { // 手机导航 $('.menuBtn').click(function(event) { $(this).toggleClass('open'); var _winw = $(window).width(); var _winh = $(window).height(); if ($(this).hasClass('open')) { $('body').addClass('open'); if (_winw <= 1000) { $('.nav-m').stop().slideDown(); } } else { // $('body').removeClass('open'); $('body').addClass('open'); if (_winw <= 1000) { $('.nav-m').stop().slideUp(); } } }); // if ($(".nv li").find('.sub').length) { // $(".nv li").find(".sub").siblings("a").attr("href","javascript:;") // } ; function myNav() { var _winw = $(window).width(); if (_winw >= 1000) { $('body,.menuBtn').removeClass('open'); $('.nav-m').css('display', ''); $('.nv li').bind('mouseenter', function() { $(this).find('.sub').stop().slideDown(); if ($(this).find('.sub').length) { $(this).addClass('ok'); } }); $('.nv li').bind('mouseleave', function() { $(this).removeClass('ok'); $(this).find('.sub').stop().slideUp(); }); $('body,.menuBtn').removeClass('open'); } else { $('.nv .v1').click(function() { $(this).parents(".nv").find(".sub").stop().slideUp(); $(this).siblings('.sub').stop().slideToggle(); $(this).parent("li").toggleClass('on'); var li = $(this).parent("li"); if (li.hasClass('on')) { li.parents(".nv").find("li").removeClass('on'); li.addClass('on'); } else { li.removeClass('on'); } }); } } myNav(); $(window).resize(function(event) { myNav(); $('.menuBtn').removeClass('open'); }); // 搜索 $('.so-btn').click(function() { $('.soBox').show(); $(".soBox").css({display:"block !important"}); }); $(".soBox .close").click(function() { $('.soBox').hide(); }) // 友情链接 $(".fd-link dl").hover(function(){ $(this).parent().find("dd").stop().slideUp(); $(this).find("dd").stop().slideDown(); $(this).parent().find("dl").removeClass('on'); $(this).toggleClass('on'); },function(){ $(this).find("dd").stop().slideUp(); $(this).removeClass('on'); }); // 滚动导航悬浮 $(document).on('scroll', function() { var scrollH = $(this).scrollTop(); if (scrollH > $('.header').height()) { var _winw = $(window).width(); if (_winw >= 1000) { $('.header').addClass('fixed'); } else { $('.header').removeClass('fixed'); } } else { $('.header').removeClass('fixed'); } }) // 返回顶部 $(document).on('scroll', function() { var scrollH = $(this).scrollTop(); if (scrollH > 500) { $('.g-top').addClass('on'); } else { $('.g-top').removeClass('on'); } }) $('.g-top').click(function() { $('body,html').animate({ 'scrollTop': 0 }, 500); }); // 选项卡 鼠标点击 $(".TAB_CLICK li").click(function() { var tab = $(this).parent(".TAB_CLICK"); var con = tab.attr("id"); var on = tab.find("li").index(this); $(this).addClass('on').siblings(tab.find("li")).removeClass('on'); $(con).eq(on).show().siblings(con).hide(); }); // 选项卡 鼠标经过切换 $(".TAB li").mousemove(function() { var tab = $(this).parent(".TAB"); var con = tab.attr("id"); var on = tab.find("li").index(this); $(this).addClass('on').siblings(tab.find("li")).removeClass('on'); $(con).eq(on).show().siblings(con).hide(); }); // 机构 $(".header .top-r dl").hover(function(){ $(this).parent().find("dd").stop().slideUp(); $(this).find("dd").stop().slideDown(); $(this).toggleClass('on').siblings('dl').removeClass('on'); },function(){ $(this).find("dd").stop().slideUp(); $(this).removeClass('on'); }); // 下拉 $(".m-menu .tit").click(function() { $(this).parents('.m-menu').find("ul").stop().slideUp('fast'); $(this).siblings('ul').stop().slideToggle('fast'); $(this).toggleClass('on'); if ($(this).hasClass('on')) { $(this).parents('.m-menu').find('.tit').removeClass('on'); $(this).addClass('on'); } else { $(this).removeClass('on'); }; }) });