$(document).ready(function(){ // Service $(".owl-item.cloned > .item",".service-2").attr("id","no_lin"); //복제된 owl-item의 id제거 /* //brand_sub scroll fix var menu = $(".brand_sub_sub"); var menuLocation = menu.offset(); $(window).scroll(function(){ if( $(document).scrollTop() >= (menuLocation.top - 128) ){//128="상단 fix메뉴의 높이" //menu.addClass("menufix"); menu.css({position:"fixed",top:"127px",zIndex:"10",width:"100%"}); } else{ //menu.removeClass("menufix"); menu.css({position:"relative",top:"",zIndex:"",width:""}); } }); */ //Brand_menu var mq_0 = window.matchMedia("(min-width: 1200px)");//미디어쿼리 1200px 이상 var mq_1 = window.matchMedia("(min-width: 768px)");//미디어쿼리 768px 이상 var mq_2 = window.matchMedia("(min-width: 641px)");//미디어쿼리 641px 이상 if(mq_0.matches){ //true $("main.brand_02 .store_swiper_wrap .tabs .swiper-slide").css({width:""});//swiper.js의 width제거 } if(mq_1.matches){ //true $(".swiper_wrap .tabs .swiper-slide").css({width:""});//swiper.js의 width제거 } if(mq_2.matches){ //true $("main.brand_01 .store_swiper_wrap .tabs .swiper-slide").css({width:""});//swiper.js의 width제거 } $(window).resize(function(){ //창 수동조절시 탭메뉴 재구성 var mq_0 = window.matchMedia("(min-width: 1200px)");//미디어쿼리 1200px 이상 var mq_1 = window.matchMedia("(min-width: 768px)");//미디어쿼리 768px 이상 var mq_2 = window.matchMedia("(min-width: 641px)");//미디어쿼리 641px 이상 if(mq_0.matches){ //true $("main.brand_02 .store_swiper_wrap .tabs .swiper-slide").css({width:""});//swiper.js의 width제거 } if(mq_1.matches){ //true $(".swiper_wrap .tabs .swiper-slide").css({width:""});//swiper.js의 width제거 } if(mq_2.matches){ //true $("main.brand_01 .store_swiper_wrap .tabs .swiper-slide").css({width:""});//swiper.js의 width제거 } }); })