$(function(){ /*图alt替换*/ $("* img").attr({alt:"顺康检测",title:"顺康检测"}); /*首页滚动swipoer*/ $require(['swiper'], function () { var honorbox = new swiper ('.honorbox', { speed: 1500, autoplay: true, loop: true, slidesperview :2, spacebetween : 20, watchslidesvisibility: true, centerinsufficientslides: true, autoplaydisableoninteraction : false, navigation: { nextel: '.honorboxbb .swiper-button-next', prevel: '.honorboxbb .swiper-button-prev', }, breakpoints: { 768: { slidesperview :4, spacebetween : 20 } } }); }); /*首页滚动swipoer*/ $require(['swiper'], function () { var honorbox = new swiper ('.honorbox01', { speed: 1500, autoplay: true, loop: true, slidesperview :1, spacebetween : 0, watchslidesvisibility: true, centerinsufficientslides: true, autoplaydisableoninteraction : false, navigation: { nextel: '.honorboxbb01 .swiper-button-next', prevel: '.honorboxbb01 .swiper-button-prev', }, breakpoints: { 768: { slidesperview :1, spacebetween : 0 } } }); }); /* 循环体a标签选中高亮,多用于分类*/ var url = window.location.pathname + window.location.search; $(".p_list a").each(function () { //判断分类导航里面的rel和url地址是否相等 if ((url).indexof($(this).attr('href')) > -1&&$(this).attr('href')!='') { $(this).addclass('active'); urlstatus = true; } else { $(this).removeclass('active'); } }); /* 分类选中高亮,多用于分类*/ var urlname = window.location.pathname; $('.navlist_a1 .swiper-slide a').each(function(){ var urlhref = $(this).attr('href'); if (urlname.indexof(urlhref)>=0){ $(this).addclass('active'); } }); var windname = window.location.pathname; var time = setinterval(function () { var m = $(".p_loopitem a").attr("href"); if (m) { console.log(m); $(".p_loopitem a").each(function () { var l_m = $(this).attr("href") if (l_m == windname) { $(this).parents('.p_loopitem').addclass("active") } }); clearinterval(time); } }, 100); });