$(function(){ /*图alt替换*/ $("* img").attr({alt:"贵州青酒酒厂",title:"贵州青酒酒厂"}); /*首页滚动swipoer*/ $require(['swiper'], function () { var honorbox = new swiper ('.honorbox', { speed: 1500, autoplay: true, loop: true, slidesperview :2, spacebetween : 10, watchslidesvisibility: true, centerinsufficientslides: true, autoplaydisableoninteraction : false, navigation: { nextel: '.honorboxbb .swiper-button-next', prevel: '.honorboxbb .swiper-button-prev', }, breakpoints: { 768: { slidesperview :4, spacebetween : 20 } } }); }); // search open $('.header .h_head .h_search').click(function(){ $('.top_search').stop().slidetoggle() $('.top_search').toggleclass('on') $(this).toggleclass('on') }); /*首页资质滚动swipoer*/ $require(['swiper'], function () { var honorbox = new swiper ('.honorbox010', { speed: 1500, autoplay: true, loop: true, slidesperview :2, spacebetween : 15, watchslidesvisibility: true, centerinsufficientslides: true, autoplaydisableoninteraction : false, navigation: { nextel: '.honorboxbb010 .swiper-button-next', prevel: '.honorboxbb010 .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'); } }); });