$(function () { //导航 var href = location.href; var leVa = 0; var on = 0; var aboutUs = new RegExp("/aboutUs/"); var news = new RegExp("/news/"); var cooperation = new RegExp("/cooperation/"); var investor = new RegExp("/investor/"); var investorEN = new RegExp("/investorEN/"); var joinUs = new RegExp("/joinUs/"); var contactUs = new RegExp("/contactUs/"); var client = new RegExp("/client/"); var serve = new RegExp("/serve/"); var conContentUs = new RegExp("/contactUs/contactUs"); if (aboutUs.test(href)) { on = 1; } else if (news.test(href)) { on = 2; } else if (client.test(href)) { on = 3; } else if (serve.test(href)) { on = 4; } else if (cooperation.test(href)) { on = 5; } else if (investor.test(href)) { on = 6; } else if (investorEN.test(href)) { on = 6; $(".ind6_liBl.en").html('中').attr("href", "/investor/"); } else if (joinUs.test(href)) { on = 7; } else if (contactUs.test(href)) { on = 8; } if (conContentUs.test(href)) { $(".nav_bgBl").addClass("op0"); } var media = new RegExp("/news/media"); var video = new RegExp("/news/video"); var Recruitment = new RegExp("/joinUs/Recruitment"); var society = new RegExp("/joinUs/society"); var campus = new RegExp("/joinUs/campus"); var situation = new RegExp("/aboutUs/situation"); var course = new RegExp("/aboutUs/course"); var honor = new RegExp("/aboutUs/honor"); var idea = new RegExp("/aboutUs/idea"); var duty = new RegExp("/aboutUs/duty"); var pattern = new RegExp("/cooperation/pattern"); var Property = new RegExp("/serve/Property"); var Assets = new RegExp("/serve/Assets"); var Enterprise = new RegExp("/serve/Enterprise"); var Major = new RegExp("/serve/Major"); var enterprise = new RegExp("/client/enterprise"); var government = new RegExp("/client/government"); var hospital = new RegExp("/client/hospital"); var school = new RegExp("/client/school"); var personal = new RegExp("/client/personal"); if (media.test(href) || Recruitment.test(href) || society.test(href) || campus.test(href) || situation.test(href) || pattern.test(href) || Property.test(href) || enterprise.test(href)) { $(".com_navLi").eq(1).addClass("cur").siblings().removeClass("cur"); } else if (video.test(href) || course.test(href) || Assets.test(href) || government.test(href) || hospital.test(href) || school.test(href)) { $(".com_navLi").eq(2).addClass("cur").siblings().removeClass("cur"); } else if (honor.test(href) || Enterprise.test(href) || personal.test(href)) { $(".com_navLi").eq(3).addClass("cur").siblings().removeClass("cur"); } else if (idea.test(href) || Major.test(href)) { $(".com_navLi").eq(4).addClass("cur").siblings().removeClass("cur"); } else if (duty.test(href)) { $(".com_navLi").eq(5).addClass("cur").siblings().removeClass("cur"); } else { $(".com_navLi").eq(0).addClass("cur").siblings().removeClass("cur"); } var pa = location.href.split("?pa=")[1] || 0; if (pa > 0) { $(".com_navLi").eq(pa - 1).addClass("cur").siblings().removeClass("cur"); } var wid = $(".nav > .navitem").eq(on).width(); var le = $(".nav > .navitem").eq(on).position().left; var wHeight = $(window).height(); var wWidth = $(window).width(); function resize() { wHeight = $(window).height(); wWidth = $(window).width(); setTimeout(function () { wid = $(".nav > .navitem").eq(on).width(); le = $(".nav > .navitem").eq(on).position().left; $(".nav_bgBl").css({ "width": wid, "left": le }); }, 300) } resize(); $(window).resize(function () { resize(); }); $(".nav_bgBl").css({ "width": wid, "left": le }); $(".nav_ulBl .navitem").on("mouseover", function () { var bWid = $(this).width(); var leVa = $(this).position().left; $(".nav_bgBl").css({ "width": bWid, "left": leVa }); }) $(".nav_ulBl").on("mouseleave", function () { $(".nav_bgBl").css({ "width": wid, "left": le }); }) //视频 $(".vid_button").on("click", function () { var src = $(this).attr("da-src"); if (src != "" && src != undefined) { $(".vidBl_content").stop(true, true).fadeIn(); $(".videoBl_conBlock").html(``); var topV = ($(window).height() - $(".videoBl_conBlock video").height()) / 2 - 50; $(".videoBl_conBlock video,.videoBl_clear").css({ "top": topV }) document.getElementById("example_video_1").play(); } }) $(".vidBl_bg,.videoBl_clear").on("click", function () { $(".vidBl_content").stop(true, true).fadeOut(); $(".videoBl_conBlock").html(""); }) $(".vidBl_content").bind('mousewheel', function (event, delta) { event.stopPropagation() return true; // 返回值在这 }); $(".img_node").each(function () { var _this = $(this); if ($(window).width() > 768) { _this.attr("src", $(this).attr("w-src")); } else { var src = $(this).attr("t-src") || $(this).attr("w-src"); _this.attr("src", src); } }) $(".bg_node").each(function () { var _this = $(this); if ($(window).width() > 768) { _this.css("background-image", "url(" + $(this).attr("w-src") + ")"); } else { var src = $(this).attr("t-src") || $(this).attr("w-src"); _this.css("background-image", "url(" + src + ")"); } }) document.querySelector(".ind6_nav").addEventListener("click", function () { var _th = this; if (_th.classList.contains("cur")) { _th.classList.remove("cur"); document.getElementById("navWrapper").style.right = "-220px"; } else { _th.classList.add("cur"); document.getElementById("navWrapper").style.right = "0px"; } }) // 延迟CNZZ统计, 以免影响页面载入 var cz = document.createElement("script"); cz.src = "//s4.cnzz.com/z_stat.php?id=1279319639&web_id=1279319639"; document.getElementsByTagName('body')[0].appendChild(cz); })