;(function($) { // ========================================================== // 快速購物跳窗 // ========================================================== $('body').on('click', '.product-quickshop', function(e) { $(this).parents('.productBox').find('.quickshop-box').toggleClass('in-show'); }) $(".save-like").click(function(){ $(this).toggleClass('show'); }) let $deviceType = '' function destroyOwl(selector) { if (typeof $(selector).data('owl.carousel') !== 'undefined') { $(selector).data('owl.carousel').destroy() } } function mobileDestroy(selector, windowWidth, deviceType, owlObject) { if (windowWidth > 1024 && deviceType !== 'desktop') { deviceType = 'desktop' $(selector).owlCarousel(owlObject) } else if (windowWidth <= 1024 && deviceType !== 'mobile') { deviceType = 'mobile' destroyOwl(selector) } } $(window).on('resize', function(e) { const $windowWidth = $(window).outerWidth(true) const sixItems = { nav: true, dots: true, items: 6, slideBy: 'page', responsive: { 768: { margin: 15, }, 1201: { margin: 30, }, } } // ========================================================== // 暢銷熱榜 // ========================================================== //mobileDestroy('.hot-sale', $windowWidth, $deviceType, sixItems) $('.hot-sale').owlCarousel({ responsive:{ 0:{ items : 2, margin: 15 }, 481:{ items : 3, margin: 15 }, 768:{ items : 6, margin: 15 }, 1201:{ items : 6, margin: 30 } }, navText : ['',''], nav :true, dots:false, }); // ========================================================== // 最近瀏覽 // ========================================================== mobileDestroy('.last-view', $windowWidth, $deviceType, sixItems) }) })($)