/* ╭──╮╭──╮╭─╮ ╭─╮ tm │╭─╯│╭╮│╰╮│ ╰╮│ │╰─╮│╰╯│ ││ ││ ╰─╮││╭╮│ ││ ││ ╭─╯││╰╯│╭╯╰╮╭╯╰╮ ╰──╯╰──╯╰──╯╰──╯ web: www.5811.com.cn tel: 4006-120-950 */ $(function(){ //动画效果弹出菜单 $(".menus li").hover(function(){ $(this).addclass("ok").find("dl").stop(true,true).slideup(0).slidedown(300); },function(){ $(".ok").find("dl").stop(true,true).slideup(200); $(this).removeclass("ok"); }); //无动画弹出菜单 $(".menu li,.menu_my").hover(function(){ $(this).addclass("ok"); },function(){ $(this).removeclass("ok"); }); //当前显示导航 $('.hottop li').mouseover(function(){ $(this).parent('ul').find('.ok').removeclass('ok'); $(this).addclass('ok'); if(!$(this).next('li').text()){ $(this).addclass('end'); } }); // 折叠菜单 $('.slide h3').click(function(){ var $nn=$(this).hasclass('ok'); if($nn){ $(this).removeclass('ok'); $(this).next('ul').addclass('dn'); } else { $(this).addclass('ok'); $(this).next('ul').removeclass('dn'); } }); $(".slide h3").hover(function(){ $(this).addclass("ok_bg"); },function(){ $(this).removeclass("ok_bg"); }); // 动画折叠菜单 $('.slides h3').mouseover(function(){ qq=$(this).hasclass('ok'); if(!qq) $('.slides .ok').removeclass('ok').next('ul').stop(true,true).hide(600,"linear"); if(!qq) $(this).addclass('ok').next('ul').show(600,"linear"); }); // 选项卡 鼠标经过切换 $(".tab li").mousemove(function(){ var $vv=$(this).parent(".tab").attr("id"); $($vv).hide(); $(this).parent(".tab").find("li").removeclass("hover"); var xx=$(this).parent(".tab").find("li").index(this); $($vv).eq(xx).show(); $(this).addclass("hover"); }); // 选项卡 鼠标点击 $(".tab_clike li").click(function(){ var $vv=$(this).parent(".tab").attr("id"); $($vv).hide(); $(this).parent(".tab").find("li").removeclass("hover"); var xx=$(this).parent(".tab").find("li").index(this); $($vv).eq(xx).show(); $(this).addclass("hover"); }); // 滚动到指定位置 $('.nv_h a').click(function(){ hh=$(this).attr('rel')*1; id=$(this).attr('href'); num=$(id).offset().top; if(hh) num=num+hh; $("html,body").animate({scrolltop: num}, 1000); return false; }); });