$(function () { var videoWidth = parseInt($(".video ").width()) $(".video").height(videoWidth/16*9+"px") $(".history").height( $(".history").height()+ videoWidth/34*9+"px") $(".zt_navbar .zt_nav_item").on("click", function (event) { event.stopPropagation() $(".zt_navbar .zt_nav_item").removeClass("active") $(".zt_navbar .zt_sub_menu_title").removeClass("active") $(this).addClass("active") let parentNode = $(this).parent(".zt_sub_menu")[0] if (!parentNode) { $(".zt_navbar .zt_sub_menu").removeClass("show") } }) $(".nav-item").on("mouseenter",function(){ $(this).find(".triangel").css("display","block") $(this).find(".menu_sub").stop().slideDown(200) }) $(".nav-item").on("mouseleave",function(){ $(this).find(".triangel").css("display","none") $(this).find(".menu_sub").slideUp(200) }) $(".zt_navbar .zt_sub_menu_title").on("click", function (event) { $(this).siblings(".zt_sub_menu").toggleClass("show") //鏈韩灞曞紑 //鍏朵粬鍏抽棴 $(".zt_navbar .zt_sub_menu_title") .not(this) .siblings(".zt_sub_menu") .removeClass("show") }) // 鎺у埗鎼滅储妗嗘樉绀洪殣钘 // $(".search_link").on("click", function () { // $(".zt_layout").toggleClass("d-none") // if(!$(".zt_layout").hasClass("d-none")){ // $(".zt_layout #message-text").focus() // } // $(".zt_layout_content").slideToggle() // }) $(".search_link").on("mouseenter", function () { $(".zt_layout").addClass("d-block") if($(".zt_layout").hasClass("d-block")){ $(".zt_layout #message-text").focus() } $(".zt_layout_content").slideDown() }) $(".zt_layout").on("click", function (event) { console.log(event.target.nodeName) if (event.target.nodeName === "INPUT") { return } $(".zt_layout").removeClass("d-block") $(".zt_layout_content").slideUp() }) $(".zt_layout_content").on("mouseleave", function (event) { $(".zt_layout").removeClass("d-block") $(".zt_layout_content").slideUp() }) $(".zt_search_btn").on("click", function () { var url = "" let val = $("#message-text").val() location.href = url + "/searchres?title=" + val }) $("#message-text").keydown(function(event){ if(event.keyCode == 13){ var url = "" // 鍏蜂綋鐨勭洃鍚€昏緫 let val = $("#message-text").val() location.href = url + "/searchres?title=" + val } }); function wordlimit(cname,wordlength){ //鍙傛暟鍒嗗埆涓猴細绫诲悕锛岃鏄剧ず鐨勫瓧绗︿覆闀垮害 var cname=document.getElementsByClassName(cname); //闇€瑕佸姞鐪佺暐绗﹀彿鐨勫厓绱犲璞 for(var i=0;iwordlength){ cname[i].innerHTML=nowhtml.substr(0,wordlength)+'...'; //鎴彇鍏冪礌鐨勬枃鏈殑闀垮害骞跺姞涓婄渷鐣ュ彿 } } } // $(window).scroll(function(){ // //2.鑾峰彇缃戦〉婊氬姩鐨勫亸绉婚噺 // var offset=$("html,body").srcollTop(); // console.log(offset) // if(offset>300){ // $(".gotop").show().fadeIn(500); // $(".gotop").click(function(){ // $('body,html').animate({scrollTop:0},500); // }) // }else{ // $(".gotop").hide() // } // } $(window).scroll(function(){ var toTop = $(window).scrollTop(); if(toTop>800){ $(".gotop").show() }else{ $(".gotop").hide() } }) $(".gotop").click(function(){ $('body,html').animate({scrollTop:0},500); }) //璁$畻鏂伴椈涓績婊氬姩楂樺害 // var newsHeight = $(".last_news").css("height") // var newsBarHeight = $(".news_nav").css("height") // var newsWrapHeight = parseInt(newsHeight) - parseInt(newsBarHeight) + "px" // $(".news_list").css("height",newsWrapHeight) // console.log("鏂伴椈涓績",newsWrapHeight) //璁$畻绮惧搧鏍囬瀹藉害 var bontiqueWidth = $(".boutique_item .item_body").css("width") var bontiqueTitleWidth = (parseInt(bontiqueWidth) - 10) + "px" $(".bontique_item_title").css("width",bontiqueTitleWidth) $(".app_header .navbar-nav .nav_link").on("click",function(e){ const href = window.location.href const aHref = e.target.href if(href === aHref){ e.preventDefault() } }) $(".dropdown-menu .sub_title").on("click",function(){ var text = $(this).text() console.log($(this).parent()) var target = $(this).parent().attr("data-target") $("#"+target).text(text) }) $(".flow-icon").find(".icon_item").on("mouseenter",function(){ var imgUrl = $(this).attr("data-img") var msg = $(this).attr("data-msg") $(this).append("

鎵弿浜岀淮鐮?/p>

"+msg+"

") }) $(".flow-icon").find(".icon_item").on("mouseleave",function(){ $(this).children().filter(".config_url").remove() }) })