// ========================================================== // 商品大小格切換 // ========================================================== ;(function($) { $('.switch-group').on('click', '.switch-item', function(e) { const targetClass = $(this).data('target') console.log('click') $(this).addClass('now').siblings('.switch-item').removeClass('now') $('#Main_Content').removeAttr('class').addClass('content items-list').addClass(targetClass) }) let switchStep = '' $(window).on('resize', function(e) { if(switchStep !== 'desktop' && $(this).width() >= 768) { switchStep = 'desktop' $('.switch-item[data-target="view-three"]').trigger('click') } else if(switchStep !== 'mobile' && $(this).width() < 768) { switchStep = 'mobile' $('.switch-item[data-target="view-four"]').trigger('click') } }).trigger('resize') })($) // ========================================================== // 列表上方廣告banner輪播 // ========================================================== ;(function($) { if($('.picSlides-big').length) { $('.picSlides-big').each(function(i, ele) { if($(ele).children().length > 1) { $(ele).owlCarousel({ autoplay: true, autoplayHoverPause: true, autoplaySpeed: 1500, autoplayTimeout: 5000, dots: false, items: 1, loop: true, margin: 10, nav: true, navText: ['', ''], }) } }) } })($) // ========================================================== // 手機版篩選器 // ========================================================== ;(function($) { $('.column-layout').on('click', '.function-button', function(e) { e.preventDefault() $(this).parents('.function-item').toggleClass('in-active') .siblings('.function-item').removeClass('in-active') const thiaTarget = $(this).attr('data-target') $(thiaTarget).toggleClass('in-active') .siblings('.aside-panel').removeClass('in-active') }) })($)