$('.top2_list_li').mouseenter(function(event) { $('.top2_list_li').removeClass('cur'); $(this).addClass('cur').siblings().removeClass('cur'); $(this).find('.intro').stop().slideDown(); $(this).find('.intro').css("display", 'flex') }).mouseleave(function(event) { $(this).find('.intro').stop().slideUp(); }); $(".show_m1").click(function() { $(this).hide(); $(this).next().removeClass('no_show'); $(this).parent().next().slideDown() }) $(".close_more").click(function() { $(this).addClass('no_show'); $(this).prev().show() $(this).parent().next().slideUp() }) $(".open_m_nav").click(function() { $('.m_nav').css({ "right": "0", "opacity": "1", "visibility": "visible" }); }) $(".close_m_nav").click(function() { $('.m_nav').css({ "right": "-100%", "opacity": "0", "visibility": "hidden" }); }) $(".search_click").click(function() { $(".top_2_right").hide() $(".search_show_all").css('display', 'flex') }) $(".close_search").click(function() { $(".top_2_right").show() $(".search_show_all").hide() $("#keyword").val('') }) if ($(window).width() > 1024) { $(document).scroll(function() { var scroH = $(document).scrollTop(); //婊氬姩楂樺害 var viewH = $(window).height(); //鍙楂樺害 var contentH = $(document).height(); //鍐呭楂樺害 if (scroH > 100) { //璺濈椤堕儴澶т簬100px鏃 $('.top_1').slideUp(); $(".intro").css("top", '81px') } if (scroH <= 100) { //璺濈搴曢儴楂樺害灏忎簬100px $('.top_1').slideDown(); $(".intro").css("top", '116px') } // if (contentH = (scroH + viewH)){ //婊氬姩鏉℃粦鍒板簳閮ㄥ暒 // } }); } var c_count = $('.nav_list_one').length; if (c_count > 5) { var c_count = 5; } if ($(window).width() < 1024) { $(".m_nav").css('min-height', $(document).height()) var nav_list_all = new Swiper(".nav_list_all", { slidesPerView: 3, spaceBetween: 0, }); } else { var nav_list_all = new Swiper(".nav_list_all", { slidesPerView: 5, spaceBetween: 0, }); } //璺宠浆鎼滅储 /* $(".goto_search").click(function() { var keyword = $("#keyword").val(); if (keyword != '') { window.location.href = "search.html?keyword=" + keyword } else { alert('璇疯緭鍏ヨ鏌ヨ鐨勫叧閿瘝锛?) } }) */ /* $(".footer_search").click(function() { var keyword = $("#footer_keyword").val(); if (keyword != '') { window.location.href = "search.html?keyword=" + keyword } else { alert('璇疯緭鍏ヨ鏌ヨ鐨勫叧閿瘝锛?) } }) */ //鑾峰彇url涓殑鍙傛暟 function getUrlParam(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); //鏋勯€犱竴涓惈鏈夌洰鏍囧弬鏁扮殑姝e垯琛ㄨ揪寮忓璞 var r = window.location.search.substr(1).match(reg); //鍖归厤鐩爣鍙傛暟 if (r != null) return unescape(r[2]); return null; //杩斿洖鍙傛暟鍊 } //鍏抽棴鎶ヤ环寮规 $(".close_btn").click(function() { $(".get_bao").hide(); }) window.scrollReveal = new scrollReveal({ reset: true, move: '50px' }); $(".nav_list_one").click(function() { $(".nav_list_one").removeClass("active_this") $(this).addClass("active_this") var index = $(this).index(); nav_list_all.slideTo(index-1); })