$(document).ready(function() { // ¼­ºê¸Þ´º // $('.menuArea div').each(function (index) { $('.menuArea li').eq(index).mouseenter(function(){ $('.menuArea div').eq(index).slideDown(300, 'easeOutQuad'); }); $('.menuArea li').eq(index).mouseleave(function(){ $('.menuArea div').eq(index).stop().slideUp(300, 'easeOutQuad'); }); }); // ÅäÅ»¸Þ´º // var gnbTotal = 0; $('#headerMobile .gnbMenu dt').eq(0).click(function(){ if (gnbTotal == 0) { $('.gnbTotal').slideDown(300, 'easeOutQuad'); gnbTotal = 1; } else { $('.gnbTotal').slideUp(300, 'easeOutQuad'); gnbTotal = 0; } }); // ¸ÞÀÎ ºñÁÖ¾ó // $('.crosscover').crosscover({ controller: false, dotNav: true }); // ¸ÞÀÎ Ä«ÇÇ // $('.mainCopy01 > h1').textillate(); $('.mainCopy01 > h2').textillate(); // ¸ÞÀÎ ·Ñ¸µ // var owl = $("#mBanner, #mBannerM"); owl.owlCarousel({ items : 1, autoPlay : true, pagination : false, singleItem:true }); // ¸ÞÀοìÃø ¿­°í ´Ý±â // var mrChk = 0; $('.mainRight p').click(function(){ if (mrChk == 0) { $('.mainRight').animate({ right : '-280px' }, 450, 'easeOutQuad'); $('.mainRight p i').removeClass("ion-arrow-right-b"); $('.mainRight p i').addClass("ion-arrow-left-b"); mrChk = 1; } else { $('.mainRight').animate({ right : '0' }, 450, 'easeOutQuad'); $('.mainRight p i').removeClass("ion-arrow-left-b"); $('.mainRight p i').addClass("ion-arrow-right-b"); mrChk = 0; } }); var mrMChk = 0; $('.mainRightM p').click(function(){ if (mrMChk == 0) { $('.mainRightM').animate({ left : '280px' }, 450, 'easeOutQuad'); $('.mainRightM p i').removeClass("ion-arrow-right-b"); $('.mainRightM p i').addClass("ion-arrow-left-b"); mrMChk = 1; } else { $('.mainRightM').animate({ left : '0' }, 450, 'easeOutQuad'); $('.mainRightM p i').removeClass("ion-arrow-left-b"); $('.mainRightM p i').addClass("ion-arrow-right-b"); mrMChk = 0; } }); // Á¦Ç°-ÅǹöÆ° // $("#productCnt0").css('display', 'block') $('.productTab a').eq(0).addClass("on"); $('.productTab a').each(function (index) { $('.productTab a').eq(index).click(function(){ $(".productPos").css('display', 'none') $('.productTab a').removeClass("on"); $("#productCnt"+index).css('display', 'block') $('.productTab a').eq(index).addClass("on"); }); }); // A/S // var asChk = 0; $('.supportAS02 dt').each(function (index) { $('.supportAS02 dt').eq(index).click(function(){ if (asChk == 0) { //$('.supportAS02 dd').slideUp(300, 'easeOutQuad'); $('.supportAS02 dd').eq(index).slideDown(300, 'easeOutQuad'); $('.supportAS02 dt').eq(index).css({ color : '#fff', background : '#c69c6d' }); $('.supportAS02 dt i').eq(index).addClass('fa-minus-square'); asChk = 1; } else { //$('.supportAS02 dd').slideUp(300, 'easeOutQuad'); $('.supportAS02 dd').eq(index).slideUp(300, 'easeOutQuad'); $('.supportAS02 dt').eq(index).css({ color : '#333', background : '#eee' }); $('.supportAS02 dt i').eq(index).removeClass('fa-minus-square'); $('.supportAS02 dt i').eq(index).addClass('fa-plus-square'); asChk = 0; } }); }); }); // ¸µÅ©Á¡¼± Á¦°Å // function bluring(){ if(event.srcElement.tagName=="A" || event.srcElement.tagName=="IMG") document.body.focus(); } document.onfocusin=bluring; // ¿µ¿ª ÇÁ¸°Æ® // var initBody; function beforePrint() { initBody = document.body.innerHTML; document.body.innerHTML = companyLocation.innerHTML; } function afterPrint() { document.body.innerHTML = initBody; } function pageprint() { window.onbeforeprint = beforePrint; window.onafterprint = afterPrint; window.print(); }