$(document).ready(function() { // »ó´Ü¿µ¿ª // $(window).scroll(function() { if ($("#header").offset().top > 50) { $('#header').stop().animate({ height : '60px' }, 350, 'easeOutQuad'); //$('#header h1').stop().animate({ marginTop : '15px' }, 350, 'easeOutQuad'); $('#header ul.gnb li a').stop().animate({ lineHeight : '60px' }, 350, 'easeOutQuad'); $('#header ul.gnb li > ul').stop().animate({ top : '60px' }, 350, 'easeOutQuad'); } else { $('#header').stop().animate({ height : '90px' }, 350, 'easeOutQuad'); //$('#header h1').stop().animate({ marginTop : '30px' }, 350, 'easeOutQuad'); $('#header ul.gnb li a').stop().animate({ lineHeight : '90px'}, 350, 'easeOutQuad'); $('#header ul.gnb li > ul').stop().animate({ top : '90px' }, 350, 'easeOutQuad'); } }); // ¸ÞÀÎ- comapny // $(window).scroll(function() { if ($("#header").offset().top > 0) { var msection11 = setInterval(function() { $('.mainContent .msection1 > ul li:nth-child(1)').animate({ marginTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(msection11); }, 100); var msection12 = setInterval(function() { $('.mainContent .msection1 > ul li:nth-child(2)').animate({ marginTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(msection12); }, 300); var msection13 = setInterval(function() { $('.mainContent .msection1 > ul li:nth-child(3)').animate({ marginTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(msection13); }, 500); var msection14 = setInterval(function() { $('.mainContent .msection1 > ul li:nth-child(4)').animate({ marginTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(msection14); }, 700); } }); // ¸ÞÀÎ- notice // $(window).scroll(function() { if ($("#header").offset().top > 500) { var msection21 = setInterval(function() { $('.mainContent .msection2 > div').animate({ marginTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(msection21); }, 100); var msection22 = setInterval(function() { $('.mainContent .msection2 > div.right').animate({ marginTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(msection22); }, 300); } }); // ¸ÞÀÎ- gallery - »ç¿ë¾ÈÇÔ // $(window).scroll(function() { if ($("#header").offset().top > 900) { var msection41 = setInterval(function() { $('.mainContent .msection4 > ul li:nth-child(1)').animate({ marginTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(msection41); }, 100); var msection42 = setInterval(function() { $('.mainContent .msection4 > ul li:nth-child(2)').animate({ marginTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(msection42); }, 300); var msection43 = setInterval(function() { $('.mainContent .msection4 > ul li:nth-child(3)').animate({ marginTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(msection43); }, 500); } }); // ¸ÞÀÎ- gallery // $(window).scroll(function() { if ($("#header").offset().top > 900) { var msection41 = setInterval(function() { $('.mainContent .msection4 td:nth-child(1).board_output_gallery_img').animate({ paddingTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(msection41); }, 100); var msection42 = setInterval(function() { $('.mainContent .msection4 td:nth-child(2).board_output_gallery_img').animate({ paddingTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(msection42); }, 300); var msection43 = setInterval(function() { $('.mainContent .msection4 td:nth-child(3).board_output_gallery_img').animate({ paddingTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(msection43); }, 500); } }); // ¼­ºê-ºñÁÖ¾ó // $(function() { var subvisual1 = setInterval(function() { $('.subVisual').animate({ paddingTop:'0', opacity: '1' }, 800, 'easeOutQuad'); clearInterval(subvisual1); }, 100); }); // ½ÃÅ¥¸®Æ¼ Á¦Ç°Æ¯ÀåÁ¡ ¿­°í ´Ý±â // $('#SCRTPRODUCT .scrtvMerit').each(function (index) { var scrtMerit = 0+String(index); $('#SCRTPRODUCT .scrtvMerit > p').eq(index).click(function(){ if (scrtMerit == 0+String(index)) { $('.scrtvMerit div').eq(index).slideDown(400, 'easeOutQuad'); $('.scrtvMerit p i').eq(index).removeClass('fa-angle-down'); $('.scrtvMerit p i').eq(index).addClass('fa-angle-up'); scrtMerit = 1+String(index); } else { $('.scrtvMerit div').eq(index).slideUp(400, 'easeOutQuad'); $('.scrtvMerit p i').eq(index).removeClass('fa-angle-up'); $('.scrtvMerit p i').eq(index).addClass('fa-angle-down'); scrtMerit = 0+String(index); } }); }); });