OOO펜트하우스

개인정보 수집 및 이용에 대한 안내

  1. 수집/이용 목적 : 견적 요청에 대한 안내
  2. 수집하는 항목 : 이름,연락처,주소
  3. 보유 / 이용 기간 : 고객요청 처리 후 3개월
  4. 동의를 거부할 수 있으며, 거부시 이용이 제한될 수 있습니다.
document.addEventListener("DOMContentLoaded", function () { // URL에 hash가 있는지 확인 if (window.location.hash) { // smoother 객체가 로딩 완료될 때까지 약간 딜레이 주기 setTimeout(() => { const target = document.querySelector(window.location.hash); if (target) { // ScrollSmoother가 있다면 Smoother 사용 if (window.smoother) { smoother.scrollTo(target, true); // true = animate } else { // smoother 없으면 기본 동작 fallback target.scrollIntoView({ behavior: "smooth" }); } } }, 300); // 스무더 초기화 시간 때문에 200~400ms 필요 } });