/* 화면 스크롤시 상단 고정 */ $(window).scroll(function(){ if ( $(window).scrollTop() > 150){ if( !$('.allmenu').hasClass('active')){ $("body").addClass("sticky-header"); } } else{ $("body").removeClass("sticky-header"); }; }); /* 상단 바로가기 show/hide */ $(window).scroll(function(){ var offset = 200; // 수직으로 어느정도 움직여야 버튼이 나올까? var duration = 500; // top으로 이동할때까지의 animate 시간 if($('.btn_top').css('position') == 'fixed') { if ($(window).scrollTop() > offset) { $('.btn_top').fadeIn(duration); } else { $('.btn_top').fadeOut(duration); }; }; }); /* 국방대 관련 홈페이지 링크 */ function goRelateSite() { var linkUrl = ""; linkUrl = document.frmRelateSite.relateSite.value; if(linkUrl != "") { window.open(linkUrl); } }; /* 팝업 윈도우 , 가운데 정렬 */ function openWin(linkurl,name,w,h,scroll) { var l = (screen.availWidth - w)/2; var t = (screen.availHeight - h)/2; if ( w == "") { w = screen.availWidth; }; if ( h == "") { h = screen.availHeight; }; var option = "width="+w+", height="+h+", left="+l+", top="+t+", scrollbars="+scroll+", resizable=yes"; window.open(linkurl, name, option); } var jsCreate = { /* 탭 Navi*/ tabToggle : function(tabContainer){ if(!tabContainer) { var tabContainer = $('.tab-wrap') }; var tabclick = $(tabContainer).children('.tab_links').find('a'); tabclick.click(function(){ if(this.href.split("#").length>1) { var indexNum = $(this).parent().index() + 1 ; var tab_links = $(this).parents(tabContainer).children('.tab_links').children('li'); var tab_contents = $(this).parents(tabContainer).children('.tab_contents'); tab_contents.children('li').removeClass('active'); tab_contents.children('li:nth-child(' + indexNum + ')').addClass('active'); tab_links.removeClass('active'); $(this).parent().addClass('active'); }; }); }, /* label로 placeholder 대체 */ placeholder : function(){ $('.placehol').bind("focusin click", function(){ $(this).parent().find("label").hide(); }).focusout(function(){ if ( $(this).parent().find("input").val() == "" ) { $(this).parent().find("label").show(); } if ( $(this).parent().find("textarea").val() == "" ) { $(this).parent().find("label").show(); } }); } } $(function(){ jsCreate.tabToggle(); // 탭기능 자동 로딩 /* 서브페이지 컨텐트 영역 프린트 */ $('.btn_print').click(function() { $('.contents').printThis(); }); /* 상단 바로가기 버튼 action */ $('.btn_top').click(function(event) { event.preventDefault(); $('html, body').animate({scrollTop: 0}, 500); return false; }); }); /* 탭 네비게이션 ---------------------------------------- */ function tabMenu(tabName){ var tabId = $(tabName); var tabs = tabId.find('.tab_links'); var tab_content = tabId.find('.tab_contents'); var activeTab = tabs.find('.active').attr("title"); tab_content.find('.tab_content').hide(); tab_content.find('.' + activeTab).show(); tabs.find('.tab').click(function(){ tabs.find(".tab").removeClass("active"); $(this).addClass("active"); tab_content.find('.tab_content').hide(); var currentTab = $(this).attr("title"); tab_content.find('.' + currentTab).fadeIn(); }); }