/** * */ $(document).ready(function() { changeMenuLink(); var setBlank = setInterval(function() { $("#top_blank").css("height", $("#top_menu").height() + "px"); setTimeout(function() { clearInterval(setBlank); }, 1000); }, 10); $(window).resize(function() { $("#top_blank").css("height", $("#top_menu").height() + "px"); }); // ¸ð¹ÙÀÏ ¸Þ´º À§Ä¡ À¯Áö var bannerOffset = $( '.sidenav' ).offset(); $(window).scroll(function() { // window¿¡ ½ºÅ©·Ñ¸µÀÌ ¹ß»ýÇϸé if ($(document).scrollTop() > bannerOffset.top) { $('.sidenav').addClass('topFixBannerFixed'); } else { $('.sidenav').removeClass('topFixBannerFixed'); } }); }); // ¸ð¹ÙÀÏ ¸Þ´º ¿­±â/´Ý±â function openNav() { $("#menu_mobile").css("width", "225px"); $("#menu_mobile").css("border-right", "0px solid #EEE").animate({ borderWidth: 2 }, 50); $("#menu_mobile_container").css("opacity", "0").animate({ opacity: 1 }, 500); } function closeNav() { $(".side_menu").removeClass("w3-show"); $("#menu_mobile").css("width", "0"); $("#menu_mobile").css("border-right", "2px solid white").animate({ borderWidth: 0 }, 50); $("#menu_mobile_container").css("opacity", "1").animate({ opacity: 0 }, 200); } /* function openSideMenu(id) { var x = document.getElementById(id); if (x.className.indexOf("w3-show") == -1) { $(".side_menu").removeClass("w3-show"); x.className += " w3-show"; } else { x.className = x.className.replace(" w3-show", ""); } } */ // ¸Þ´º ¸µÅ© º¯°æ function changeMenuLink() { var width = parseInt($(window).width()); if (width <= 768) { $(".link_pre_shop").attr("href", "https://m.smartstore.naver.com/pigcounter/category/50000008?cp=1"); $(".link_def_shop").attr("href", "https://m.smartstore.naver.com/pigcounter/category/50000008?cp=1"); $(".link_retail_shop").attr("href", "https://m.smartstore.naver.com/pigcounter/category/50000008?cp=1"); $(".link_kiosk_shop").attr("href", "https://m.smartstore.naver.com/pigcounter/products/2194752074"); $(".link_table_shop").attr("href", "https://m.cafe.naver.com/pigcounter?iframe_url=/ArticleList.nhn%3Fsearch.clubid=25747625%26search.menuid=31%26search.boardtype=Q"); $(".link_qna").attr("href", "https://m.cafe.naver.com/pigcounter?iframe_url=/ArticleList.nhn%3Fsearch.clubid=25747625%26search.menuid=31%26search.boardtype=Q"); $(".link_qna_b").attr("onclick", "window.open('about:blank').location.href='https://m.cafe.naver.com/pigcounter?iframe_url=/ArticleList.nhn%3Fsearch.clubid=25747625%26search.menuid=31%26search.boardtype=Q';"); } else { $(".link_pre_shop").attr("href", "https://smartstore.naver.com/pigcounter/category/50000008?cp=1"); $(".link_def_shop").attr("href", "https://smartstore.naver.com/pigcounter/category/50000008?cp=1"); $(".link_retail_shop").attr("href", "https://smartstore.naver.com/pigcounter/category/50000008?cp=1"); $(".link_kiosk_shop").attr("href", "https://smartstore.naver.com/pigcounter/products/2194752074"); $(".link_table_shop").attr("href", "https://cafe.naver.com/pigcounter?iframe_url=/ArticleList.nhn%3Fsearch.clubid=25747625%26search.menuid=31%26search.boardtype=Q"); $(".link_qna").attr("href", "https://cafe.naver.com/pigcounter?iframe_url=/ArticleList.nhn%3Fsearch.clubid=25747625%26search.menuid=31%26search.boardtype=Q"); $(".link_qna_b").attr("onclick", "window.open('about:blank').location.href='https://cafe.naver.com/pigcounter?iframe_url=/ArticleList.nhn%3Fsearch.clubid=25747625%26search.menuid=31%26search.boardtype=Q';"); } } // ¹Ì±¸Çö Ç¥½Ã function preparing() { alert("ÇöÀç ÁغñÁßÀÎ ¼­ºñ½º ÀÔ´Ï´Ù."); }