From a8c73b5745352c600f25e356e0fb79aa631f04f6 Mon Sep 17 00:00:00 2001 From: KINDNICK <68893236+KINDNICK@users.noreply.github.com> Date: Tue, 22 Jul 2025 22:32:11 +0900 Subject: [PATCH] =?UTF-8?q?Add=20:=20=EA=B5=AC=EA=B8=80=20=ED=8F=BC=20?= =?UTF-8?q?=EA=B4=80=EB=A0=A8=20=EB=82=B4=EC=9A=A9=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 95 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 35709d6..c047eca 100644 --- a/index.html +++ b/index.html @@ -326,7 +326,7 @@

1) 스튜디오 대관 절차

- 스튜디오 예약 구글 폼 제출 + 이메일 문의 담당자 확인 및 세부사항 협의 @@ -335,9 +335,45 @@ 예약 확정
- 📝 구글 폼으로 예약 신청하기 +

※ 네이버 플레이스를 통한 예약도 가능합니다

+ +

2) 예약 안내

@@ -565,6 +601,25 @@ if (e.key === 'Escape') closeLightbox(); } } + + // 인라인 이메일 문의 양식 토글 기능 + const showEmailFormButtons = document.querySelectorAll('#showEmailForm, #showEmailForm2'); + const inlineEmailForm1 = document.getElementById('inlineEmailForm'); + const inlineEmailForm2 = document.getElementById('inlineEmailForm2'); + + showEmailFormButtons.forEach((button, index) => { + button.addEventListener('click', function() { + const targetForm = index === 0 ? inlineEmailForm1 : inlineEmailForm2; + + if (targetForm.style.display === 'none' || targetForm.style.display === '') { + targetForm.style.display = 'block'; + this.textContent = '📧 이메일 문의 양식 숨기기'; + } else { + targetForm.style.display = 'none'; + this.textContent = '📧 이메일 문의하기'; + } + }); + }); }); @@ -596,7 +651,44 @@

FAQ – 자주 묻는 질문