$(function () { /*灏忓睆骞曞鑸偣鍑诲叧闂彍鍗?/ $(".navbar-collapse a").click(function () { $(".navbar-collapse").collapse("hide") }) $(".carousel").carousel() //杞挱 //鏃堕棿绾 $(".line_point").on("mouseover", function () { $(".line_point span").removeClass("active") let index = $(this).index() $(this).children("span").addClass("active") $(".history .time_desc").addClass("d-none") $(".history .time_desc").eq(index).removeClass("d-none") // $(".history .video").addClass("d-none") // $(".history .video").eq(index).removeClass("d-none") $(".history .video:hidden video").each(function(ind,el){ el.pause() $(el).prev(".video_play").css("opacity", 1) //鍏朵粬瑙嗛涓嶆挱鏀 }) // var descHeight = $(".time_desc:not(:hidden)").height() // var marginTop = (4 + (descHeight - 18)/80) + "rem" // $(".boutique").css("marginTop",marginTop) }) //鏂伴椈涓績瀵艰埅 $(".news_nav_item").on("mouseover", function () { $(".news_nav_item").removeClass("active") $(this).addClass("active") let index = $(this).index() $(this).addClass("active") $(".news_body .news_right .news_list").addClass("d-none") $(".news_body .news_right .news_list").eq(index).removeClass("d-none") }) //瑙嗛鎾斁 $(".video_play").on("click", function (e) { let videoEle = $(this).next("video")[0] if (videoEle.paused) { $(this).css("opacity", 0) $(this).find("img").css("opacity", 0) videoEle.play() } else { $(this).css("opacity", 1) $(this).find("img").css("opacity", 1) videoEle.pause() } }) $("video").each(function(ind,el){ // el.onclick = function(){ // if (el.paused) { // $(el).prev(".video_play").css("opacity", 0) // $(el).prev(".video_play").find("img").css("opacity", 0) // el.play() // } else { // $(el).prev(".video_play").css("opacity", 1) // $(el).prev(".video_play").find("img").css("opacity", 1) // el.pause() // } // } el.ontimeupdate = function() { if(el.paused){ $(".video_play").css("opacity", 1) $(".video_play img").css("opacity", 1) }else{ $(".video_play").css("opacity", 0) $(".video_play img").css("opacity", 0) } }; }) $(".panel_item").on("mouseover",function(){ $(this).find(".panel_more").attr("src","/static/index/t2/imgs/moreActive.png") }) $(".panel_item").on("mouseleave",function(){ $(this).find(".panel_more").attr("src","/static/index/t2/imgs/moreArrow.png") }) /*涓烘瘡涓寜閽坊鍔犵偣鍑讳簨浠?/ $('#business_area .title_item').mouseenter(function () { // $(this) // .css('background-color', '#1960ab') // .siblings() // .css('background-color', 'rgb(25, 96, 171, 0.6)'); //璁剧疆浣嶇疆 $('#business_active').offset($(this).offset()); $(this).find('img.active').css('visibility', 'visible'); $(this).siblings().find('img.active').css('visibility', 'hidden'); var index = $(this).index(); $('.body_outer') .find('.body_item') .not(index) .hide() .find('img') .css("opacity",0) $('.body_outer') .find('.body_item') .eq(index) .show() .find('img') .animate({"opacity":1}) // $(".body_wrapper .body_outer .body_item img").error(function(){ // debugger // console.log("鍥剧墖鍔犺浇澶辫触") // }) }); })