//移动端分类样式 $(".yx_MoPageBtn").on('click', function() { $(this).next().css("left", "0px"); }); $(".yx_MoPageClose").on('click', function() { $(this).parent().css("left", "100%"); }); //首页产品中心 $(function() { $("#c_static_001-1667035003716 .e_categoryC-4 .p_c_item").eq(0).addClass("yx_Active"); $("#c_static_001-1667035003716 .e_categoryC-4 .p_c_item").mouseenter(function() { var p_index = $(this).index(); $(this).addClass("yx_Active").siblings().removeClass("yx_Active"); $("#c_magiccube_009-1667037224464 .content-box").eq(p_index).addClass("active").siblings().removeClass("active"); }) }); //产品页分类 $(function(){ $(".yx_icon1").on('click',function(){ $(".yx_icon1").css('transform','translateY(-50%) rotate(0deg)'); $(this).css('transform','translateY(-50%) rotate(90deg)').parent().next(".yx_PPBox2").slideToggle('slow'); $(this).parents().siblings().find(".yx_PPBox2").slideUp('slow'); }); $(".yx_icon2").on('click',function(){ $(".yx_icon2").css('transform','translateY(-50%) rotate(0deg)'); $(this).css('transform','translateY(-50%) rotate(90deg)').parent().next(".yx_PPBox3").slideToggle('slow'); $(this).parents().siblings().find(".yx_PPBox3").slideUp('slow'); }); //产品页分类高亮 var pathName = window.location.pathname; // 获得路径信息 var subUrl = pathName.substring(pathName.lastIndexOf("/")); $(".yx_PPBox .yx_PT_Link").each(function(){ // 遍历a链接的路径 var aLinkUrl = $(this).attr("href"); // 得到a链接的路径 if(aLinkUrl == pathName){ $(this).addClass("yx_Click"); $(this).parentsUntil(".yx_MoPageBtn").slideDown('slow'); return; }; }); });