$(function(){ // ========================================================== // 商品輪播 // ========================================================== ;(function($) { const prodView = $('.productImg') prodView.owlCarousel({ loop: false, items: 1, dots: true, dotsData: true, nav: true, margin: 10, onRefreshed: function(e) { const pictureHeight = prodView.find('.picbox').height() prodView.find('.owl-nav').css({ top: (pictureHeight / 2), }); } }) prodView.trigger('refresh.owl.carousel') })($) // $(".recommend_l").owlCarousel({ // nav : true, // responsive:{ // 0:{ // items : 2 // }, // 480:{ // items : 3 // }, // 768:{ // items : 4 // }, // 960:{ // items : 5 // } // }, // }); });