(function() { /*导航*/ var time = null; var list = $("#navlist"); var box = $("#navbox"); var lista = list.find("a"); for(var i = 0, j = lista.length; i < j; i++) { if(lista[i].className == "now") { var olda = i; } } var box_show = function(hei) { box.stop().animate({ height: hei /*opacity:1*/ }, 400000); } var box_hide = function() { box.stop().animate({ height: 0, /*opacity:0*/ }, 400000); } lista.hover(function() { lista.removeClass("now"); $(this).addClass("now"); clearTimeout(time); var index = list.find("a").index($(this)); box.find(".cont").hide().eq(index).show(); var _height = box.find(".cont").eq(index).height() + 10; box_show(_height) }, function() { time = setTimeout(function() { box.find(".cont").hide(); box_hide(); }, 50); lista.removeClass("now"); lista.eq(olda).addClass("now"); }); box.find(".cont").hover(function() { var _index = box.find(".cont").index($(this)); lista.removeClass("now"); lista.eq(_index).addClass("now"); clearTimeout(time); $(this).show(); var _height = $(this).height() + 10; box_show(_height); }, function() { time = setTimeout(function() { $(this).hide(); box_hide(); }, 50); lista.removeClass("now"); lista.eq(olda).addClass("now"); }); /*手机端折叠*/ $(document).ready(function(){ $(".nav-toggle").click(function() { $(".yw-navf").slideToggle(); }); $(".waps").click(function() { $(".wapsearch").slideToggle(); }); }); /*业务领域*/ $(document).ready(function(){ $(".bgtpic li").hover(function(){ $(this).find("h3").stop().fadeOut(800); $(this).find(".hdiv1").fadeIn(1000); },function(){ $(this).find("h3").fadeIn(1000); $(this).find(".hdiv1").stop().fadeOut(800); }) }); /*二级左侧导航*/ $(".leftsidebar_box dt").css({ "color": "#333" }); $(function() { $(".leftsidebar_box dd").hide(); $(".leftsidebar_box dt").click(function() { $(".leftsidebar_box dt").not(this).removeClass("lsauto autobg"); $(".leftsidebar_box dl dd").stop().slideUp(); if(!$(this).next().length) { $(this).addClass("lsauto"); return; } $(this).toggleClass("lsauto autobg").nextAll().stop().slideToggle(); }); }) /*相关企业*/ $(function(){ var t=null; $(".filter-opts").hide(); $('.ui-filtera').hover(function(){ clearTimeout(t); $(this).siblings(".ui-filtera").find('.filter-opts').hide(); $(this).find('.filter-opts').show(); },function(){ var that=$(this); t=setTimeout(function(){ that.find('.filter-opts').hide(); },100) }) }); /*tab卡切换首页新闻中心*/ $.fn.hc_proTabChanges = function(ev){ var ev = ev || 'hover'; var arr=[{name:"更多",href:"/xwzx/jtyw/index.html"},{name:"更多",href:"/xwzx/gzdt/index.html"},{name:"更多",href:"/xwzx/mtjj/index.html"},{name:"更多",href:"/xwzx/qygg/index.html"},{name:"更多",href:"http://www.baidu4.com"}]; var _this = $(this); _this.find('.tabs ul li').each(function(i){ $(this)[ev](function(){ var index = $(this).index() $(this).addClass('tabline').siblings('li').removeClass('tabline'); _this.find('.swiper-slide').eq(i).show().siblings('.swiper-slide').hide(); $(".mored a").attr("href", arr[index].href); }) }) } /*tab卡切换矿产资源和业绩报告*/ $.fn.hc_proTabChange = function(ev){ var ev = ev || 'hover'; var _this = $(this); _this.find('.tabsa li').each(function(i){ $(this)[ev](function(){ $(this).addClass('tab-current').siblings('li').removeClass('tab-current'); _this.find('.tkcon').eq(i).show().siblings('.tkcon').hide(); }) }) } $(function(){ $(".tabsn").hc_proTabChange(); $(".white").hc_proTabChanges(); }); })();