주소 끝에 해쉬(#id)가 있으면, 순간이동을 하지 않고 스크롤 해서 이동하도록 조치
/* * Smooth Scroll on Pageload * Smooth scrolling on page load if URL have a hash * Author: Franco Moya - @iamravenous */ if (window.location.hash) { var hash = window.location.hash; if ($(hash).length) { $('html, body').animate({ scrollTop: $(hash).offset().top }, 900, 'swing'); } }