$(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 () { $("#nav ul.sub").hide(); $("#nav ul.menu li").click(function () { $("ul", this).slideToggle("fast"); }); $(function () { $('.mb-nav sub li a').click(function () { var speed = 800; var href = $(this).attr("href"); var target = $(href == "#" || href == "" ? 'html' : href); var position = target.offset().top - 100; $('body,html').animate({ scrollTop: position }, 500, 'swing'); $('.black-cover').css('display', 'none'); $('.mb-nav').animate({ right: '-300px' }, 500); return false; }); }); /*(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').click(function () { $('.black-cover').css('display', 'none'); $('.mb-nav').animate({ right: '-300px' }, 500); }); });