$(document).ready(function () { // header °íÁ¤ $(window).on('scroll', function () { if ($(window).scrollTop()) { $('#header').addClass('active'); } else { $('#header').removeClass('active'); } }); //.submenu¸¦ ÀÚ½ÄÀ¸·Î °¡Áø .nav .menu > li ¿ä¼Ò¿¡¸¸ À̺¥Æ® $('#header .nav_wrap .menu > li').has('.submenu').on('mouseover', function () { $(this).children(".submenu").slideDown(); }).on('mouseleave', function () { $(this).children(".submenu").slideUp(); }); // header À̺¥Æ® function setMenuEvents() { // ÀÌÀü¿¡ ¼³Á¤µÈ À̺¥Æ®¸¦ ¸ðµÎ Á¦°Å // $('#header .menu > li').off('mouseover mouseleave click'); if (window.innerWidth >= 899) { } else { $('#header .aside_wrap .menu > li').on('click', function () { var $submenu = $(this).children('.submenu'); // ÇöÀç ÁøÇà ÁßÀÎ ¾Ö´Ï¸ÞÀ̼ÇÀ» ¸ØÃß±â $('.submenu').not($submenu).stop(true, true).slideUp(); $submenu.stop(true, true).slideToggle(); }); $('.submenu').prev('a').css('pointer-events', 'none'); } } // óÀ½ ·ÎµåµÉ ¶§ À̺¥Æ® ¼³Á¤ setMenuEvents(); // â Å©±â°¡ º¯°æµÉ ¶§¸¶´Ù À̺¥Æ® ¼³Á¤ $(window).resize(function () { setMenuEvents(); }); // Çܹö°Å ¸Þ´º $('#header .hamberg').click(function () { $(this).children('span').toggleClass('on'); $('#header .aside_wrap').toggleClass('on'); }); $('.sup_ct .form input[name="add2"]').parents('tr').addClass('w-100'); // »óÇ° ½ºÅ©·Ñ À̺¥Æ® var prdTabOffset = $('.prd_tab').offset().top - 90; // »ó´Ü¿¡¼­ 90px Â÷ÀÌ $(window).on('scroll', function () { if ($(window).scrollTop() >= prdTabOffset) { $('.prd_tab').addClass('fixed'); // °íÁ¤ Ŭ·¡½º Ãß°¡ } else { $('.prd_tab').removeClass('fixed'); // °íÁ¤ Ŭ·¡½º Á¦°Å } }); var prdTabLinks = $('.prd_tab a'); // prd_tab ¾ÈÀÇ ¸µÅ©µé var prdSections = $('.prd_sec'); // °¢ ¼½¼Çµé // ½ºÅ©·Ñ À̺¥Æ® $(window).on('scroll', function () { var currentScroll = $(this).scrollTop() + 100; // ¾à°£ÀÇ ¿ÀÇÁ¼Â Ãß°¡ prdSections.each(function () { var sectionTop = $(this).offset().top; var sectionId = $(this).attr('id'); // ÇöÀç ½ºÅ©·Ñ À§Ä¡°¡ ¼½¼ÇÀÇ À§Ä¡º¸´Ù Å©°Å³ª °°°í, ¼½¼ÇÀÇ ³¡º¸´Ù ÀÛÀ» ¶§ if (currentScroll >= sectionTop && currentScroll < sectionTop + $(this).outerHeight()) { prdTabLinks.removeClass('on'); $('.prd_tab a[href="#' + sectionId + '"]').addClass('on'); } }); }); // Ŭ¸¯ ½Ã ½º¹«½º ½ºÅ©·Ñ À̵¿ prdTabLinks.on('click', function (e) { e.preventDefault(); // ±âº» µ¿ÀÛ ¸·±â var targetId = $(this).attr('href'); // Ŭ¸¯µÈ aÀÇ href °ª (¼½¼Ç id) $('html, body').animate({ scrollTop: $(targetId).offset().top - 90 // ¼½¼Ç À§Ä¡·Î ½ºÅ©·Ñ À̵¿ (90px »ó´Ü ¿©À¯) }, 500); // 500ms µ¿¾È ½ºÅ©·Ñ À̵¿ }); $('#tabDescrip .prd_tit').text('Á¦Ç° ¼³¸í'); $('#tabKey .prd_tit').text('ÁÖ¿ä Ư¡'); $('#tabPrd .prd_tit').text('ÁÖ¿ä Á¦Ç°'); $('#tabComp .prd_tit').text('Á¦Ç° ±¸¼º'); $('#tabSpec .prd_tit').text('Á¦Ç° »ç¾ç'); $('#tabDown .prd_tit').text('´Ù¿î·Îµå'); $('#tabSystem .prd_tit').text('½Ã½ºÅÛ ±¸¼º'); $('#tabVideo .prd_tit').text('°ü·Ã ¿µ»ó'); });