$(window).scroll(function () { var $header = $('.header'); if ($(this).scrollTop() > 1) $header.addClass('fixed'); else $header.removeClass('fixed'); }); $(window).scroll(function () { var $mheader = $('.mb-mode'); if ($(this).scrollTop() > 1) $mheader.addClass('fixed'); else $mheader.removeClass('fixed'); }); $(document).ready(function () { $(".mb-nav .sub").hide(); $(".mb-nav li").click(function () { $("ul", this).slideToggle("fast"); }); /*(Top버튼) 스크롤을 상단으로 올리는 버튼*/ $('.header>.logo>a').click(function () { $('html, body').animate({ scrollTop: 0 }, 1000); }); //mobile-menu $('.mb-btn').click(function () { $('.mb-nav').animate({ right: '0' }, 500); $('.black-cover').css('display', 'block'); }); $('.black-cover').click(function () { $('.black-cover').css('display', 'none'); $('.mb-nav').animate({ right: '-300px' }, 500); }); $('.header_close img:last-child').click(function () { $('.black-cover').css('display', 'none'); $('.mb-nav').animate({ right: '-300px' }, 500); }); //메인탭 $("#tabs-menu a").click(function (event) { event.preventDefault(); $(this).parent().addClass("current"); $(this).parent().siblings().removeClass("current"); var tab = $(this).attr("href"); $(".tab-content").not(tab).css("display", "none"); $(tab).fadeIn(); }); $(".form-btn.policy").click(function (event) { if ($("input:checkbox[name=com_formmail_check_safe]").is(":checked") == true) { event.preventDefault(); $('.right a').parent().addClass("current"); $('.right a').parent().siblings().removeClass("current"); var tab = $('.right a').attr("href"); $(".tab-content").not(tab).css("display", "none"); $(tab).fadeIn(); } else { alert('개인정보처리방침에 동의해야 합니다.'); } }); });