function bluring() { try{ if(event.srcElement.tagName=='A'||event.srcElement.tagName=='IMG') { document.body.focus(); } }catch( e ) { } } try{ document.onfocusin=bluring; }catch( e ) { } var rurl = location.href; var purl = getUrl(rurl); function getUrl(url_str) { var real_url; if (url_str.indexOf('/') > 0) { real_url = url_str.split('/'); real_url = real_url[0]+'//'+real_url[2]+'/'+real_url[3]+'/'; } return real_url; } function goLocate(go_url) { document.location = purl + go_url; } // GNB 2024.07.26 Ãß°¡ $(document).ready(function(){ $('.menu_btn').click(function(){ $('.menu_btn').toggleClass('allmenu'); $('.gnb').toggleClass('depth'); }); $('.gnb li').click(function(){ $(this).find('.sub').slideToggle(); var t = $(this).find('.sub'); $('.sub').not(t).slideUp(); }); var max_h=0; $(".sub").each(function () { var h = parseInt($(this).css("height")); if (max_h < h) { max_h = h; } }); // ¸¶¿ì½º over ½Ã $('.gnb').mouseenter(function () { // menu bg var menuHeight = $('#header').outerHeight(); $('.gnb_bg').css({ 'top': menuHeight + 'px', height: max_h + 26 + 'px', }); $('#header').addClass('open'); }); $('.gnb').mouseleave(function () { $('.gnb_bg').css('height', '0'); $('#header').removeClass('open'); }); $('.gnb > li').mouseenter(function () { $(this).addClass('active'); $(this).siblings().removeClass('active') }); $('.gnb > li').mouseleave(function () { $(this).removeClass('active'); }); // slick slide $('.visual').slick({ autoplay: true, autoplaySpeed: 3000, dots: true }); $('.play').on('click', function(){ $('.visual').slick('slickPlay'); }); $('.pause').on('click', function(){ $('.visual').slick('slickPause'); }); });