페이지로드가 됐을때 setTimeout 스크롤이벤트
window.onload = function () { //페이지 열면 const thisLocation = window.location.href; //현재주소 if($(".subTitle").length){ //서브타이틀이 있으면 function bMatch(){ //주소에 해당하는 글자가 있으면 스크롤애니메이션 없애기위해 clearTimeout(timer); $('html, body').animate({ scrollTop: $('.subpage .subTitle').outerHeight()-85 }, 0); }; let timer = setTimeout(function() { // 2초뒤에 서브타이틀 높이만큼 스크롤 됨 $('html, body').animate({ scrollTop: $('.subpa..