관련상품이 현재 1줄씩 슬라이드되고있는데요
3개씩 2줄씩 보여지게 하고싶습니다.
어디를 건드려야할까요 ㅠㅠ

|
답변 1개 / 댓글 1개
채택된 답변
+20 포인트
4년 전
responsive: {
0: {
items: 3,
rows: 2
},
이옵션 추가해보세요
답변에 대한 댓글 1개
3q3q3q
4년 전
답변을 작성하려면 로그인이 필요합니다.
$(document).ready(function(){
var owl_rolling_rel = $('.owl-carousel_rel').owlCarousel({
items:3,
loop:<?php if($i < 5) echo "false"; else echo "true";?>,
margin:0,
nav:true,
autoplay:true,
autoplayHoverPause:true,
autoplayTimeout:5000, // 5000은 5초
responsive:{
0:{
items:3,
rows:2,
margin:0,
},
}
});
function init_pg(event){
var tg = $('.rolling_box ').find('.owl-item.active').find('.item').attr('data-hash');
$('.rollin_nav_btn').removeClass('active');
$("."+tg).addClass('active');
}
init_pg();
});
</script>
넣었는데 변화가 없어여ㅠㅠ 1줄에 3개는 되는데 2줄이 안되용,,