포토리뷰, 메일폼 수정 완료료

This commit is contained in:
2026-01-12 20:33:09 +09:00
parent 4588733421
commit f7e7196d65
9 changed files with 280 additions and 160 deletions

View File

@@ -1694,3 +1694,16 @@ function copyShareLink() {
}
}
}
// 앵커로 스크롤 이동 함수
function goToAnchor(anchorId) {
const $target = $("#" + anchorId);
if ($target.length > 0) {
$("html, body").animate(
{
scrollTop: $target.offset().top - 60,
},
400
);
}
}