栏目图标 关联交易
d(".swiper-slide").eq(curSlide).outerWidth(); tempLeft = Math.abs(tempLeft); tempLeft -= curWidth; if (tempLeft <= 0) { tempLeft = 0; } else { curSlide--; } wrapBox.stop().animate({ "left": -tempLeft }, speed) }); $(father + ' .price-next').click(function () { var tempLeft = parseFloat(wrapBox.css("left")); var curWidth = wrapBox.find(".swiper-slide").eq(curSlide).outerWidth(); tempLeft = Math.abs(tempLeft); tempLeft += curWidth; if (tempLeft + width1 >= width2) { tempLeft = width2 - width1; } else { curSlide++; } wrapBox.stop().animate({ "left": -tempLeft }, speed) }); }); var swiper = new Swiper('.tab_nav', { slidesPerView: 'auto', }); $('.btn_next').click(function(){ swiper.slideNext(); }) $('.btn_prev').click(function(){ swiper.slidePrev(); }) $('.ac_div .swiper-slide').click(function(){ $(this).addClass('act').siblings().removeClass('act') })