$(function() { $('.whole1 ul li').hover(function(e) { $(this).stop().animate({'width':'520px'},500).siblings().stop().animate({'width':'340px'},500); }); // 导航 $(".nav_ul li").mouseover(function() { var ds = $(this).find(".cnavli").size(); if ($(this).index() == 1 && ds==0) { $(this).html('关于我们
企业简介鲁商文化发展战略发展历程社会责任企业荣誉
'); } if ($(this).index() == 2 && ds==0) { $(this).html('主要产业
健康城市建设生态链健康管理服务链生物医药产品链
'); } if ($(this).index() == 3 && ds==0) { $(this).html('新闻中心
公司新闻视频中心
'); } if ($(this).index() == 4 && ds==0) { $(this).html('党建工作
党建工作纪检专栏党史学习教育
'); } if ($(this).index() == 5 && ds==0) { $(this).html('投资者关系
最新公告公司治理股本结构财务数据投资者建议投资者专题投资联系
'); } if ($(this).index() == 6 && ds==0) { $(this).html('客户服务
鲁商会投诉建言客服热线
'); } if ($(this).index() == 7 && ds==0) { $(this).html('纳贤招士
人才战略社会招聘校园招聘应聘流程及下载联系方式
'); } ds = $(this).find(".cnavli").size(); if (ds > 0) { $(this).find(".cnavli").show(); $(".header .cnav").show(); } }); $(".nav_ul li").mouseout(function() { $(".cnavli").hide(); $(".header .cnav").hide(); }); // banner var w = $(window).width(); var h = $(window).height(); if (w >= 1200) { $('#c-banner').height(h); $(".swiper-container .swiper-slide img").each(function() { if ($(this).width() < w) { $(this).width(w); } if ($(this).height() < h) { $(this).height(h); $(this).css("marginleft", ($(this).width() - w) / 2); } if ($(this).height() > h) { $(this).height(h); } }); } })