jQuery(function ($) { 'use strict'; // 스크롤 (function () { $('li a[href*=#]').bind("click", function(e){ var anchor = $(this); $('html, body').stop().animate({ scrollTop: $(anchor.attr('href')).offset().top -136 }, 1000); e.preventDefault(); }); }()); // 탑가기 (function () { $(window).scroll(function() { if ($(this).scrollTop() > 850) { $('.scroll-up').fadeIn(); } else { $('.scroll-up').fadeOut(); } }); }()); });