/* 导航条 */ $(function() { //点击逐渐展开移动端导航 $(".a_js").click( function() { $(".m_nav").stop(true, false).delay(0).animate({ width: "100%", height: "100%" }, 0); $(".m_nav").find(".closecover").stop(true, false).delay(0).animate({ opacity: "0.9" }, 300); $(".m_nav").find(".closeicon").stop(true, false).delay(0).animate({ opacity: "1" }, 300); $(".m_nav").find(".m_navlist").stop(true, false).delay(0).animate({ right: "0" }, 300); $('body').css('overflow', 'hidden'); } ) //点击关闭,逐渐隐藏 $(".a_closed").click( function() { $(".m_nav").stop(true, false).delay(300).animate({ width: "0", height: "0" }, 0); $(".m_nav").find(".closecover").stop(true, false).delay(0).animate({ opacity: "0" }, 300); $(".m_nav").find(".closeicon").stop(true, false).delay(0).animate({ opacity: "0" }, 300); $(".m_nav").find(".m_navlist").stop(true, false).delay(0).animate({ right: "-80%" }, 300); $('body').css('overflow', 'auto'); } ) //判断是否有子标题 $('.m_navlist ul li').each(function() { $(this).children('.m_f_a').find('i').addclass('icon') if ($(this).children('.m_s_nav').find('a').length < 1) { $(this).children('.m_f_a').children('i').removeclass('icon'); } }); //点击图标展开关闭子导航 $('.m_navlist ul li').find('.m_f_a i').click(function() { $(this).parent().parent().siblings().children('.m_s_nav').slideup(); $(this).parent().parent().siblings().children('.m_f_a').find('i').removeclass('icon_on') $(this).parent().next().toggle("normal").prev().children('i').toggleclass('icon_on'); }) });