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 – 자주 묻는 질문