마수동, 광수동 완료

This commit is contained in:
2024-11-18 22:30:18 +09:00
parent 6f2e197911
commit 86375c637b
12 changed files with 562 additions and 130 deletions

View File

@@ -287,12 +287,12 @@
<label for="agreeMarketing">
<input type="checkbox" name="" id="agreeMarketing">
<span>(선택) 마케팅 활용 목적의 개인정보 수집ㆍ이용에 동의합니다.</span>
<a href="javascript:;" onClick="javascript:open_layer_popup('marketing_popup');">더보기 &gt;</a>
<button type="button" class="btn-more" onClick="javascript:open_layer_popup('marketing_popup');"><em>더보기</em></button>
</label>
<label for="agreeAd">
<input type="checkbox" name="" id="agreeAd">
<span>(선택) 전자적 전송매체를 통한 광고성 정보 수신에 동의합니다.</span>
<a href="javascript:;" onClick="javascript:open_layer_popup('ad_popup');">더보기 &gt;</a>
<button type="button" class="btn-more" onClick="javascript:open_layer_popup('ad_popup');"><em>더보기</em></button>
</label>
</div>
@@ -300,7 +300,7 @@
</div>
<div class="btnWarp">
<div class="oneButton">
<a href=""><p>저장하기</p></a>
<button type="button" onClick="javascript:open_layer_popup('checkedResult');"><p>저장하기</p></button>
</div>
</div>
<a href="" class="memberOut">
@@ -314,11 +314,11 @@
<!--알럿팝업-->
<div class="alertPopup" style="display:none;">
<div id="checkedResult" class="alertPopup agree-result" style="display:none;">r
<div class="popInner">
<div class="content">
<p><strong>마케팅 수신 여부</strong></p>
<p><span>아래와 같이 마케팅 수신 여부를 설정해주셨습니다.</span></p>
<p><strong>마케팅 목적 개인정보 수집 · 이용 동의</strong></p>
<p><span>아래와 같이 수신 여부를 설정해주셨습니다.</span></p>
<div class="tableStyle">
<div>
@@ -327,7 +327,11 @@
<dd>2022-08-26 14:39:12</dd>
</dl>
<dl>
<dt>마케팅 수신</dt>
<dt>마케팅 활용 목적의 개인정보 수집 · 이용 동의</dt>
<dd>동의</dd>
</dl>
<dl>
<dt>전자적 전송 매체를 활용한 광고성 정보 수신 동의</dt>
<dd>동의</dd>
</dl>
</div>
@@ -344,7 +348,7 @@
</div>
</div>
<!-- [S] 마케팅 활용 동의 알럿 -->
<div id="checkedAgree" class="alertPopup" style="display:none;z-index: 501;">
<div class="popInner">
<div class="content">
@@ -365,6 +369,7 @@
</div>
</div>
</div>
<!-- [E] 마케팅 활용 동의 알럿 -->
<!-- [S] 마케팅 활용 및 광고성 정보 수신 동의 -->
<div id="marketing_popup" class="policyPopup" style="display:none; opacity:1;">
@@ -613,16 +618,11 @@
</div>
<!--//footer-->
<script>
// open_layer_popup('marketing_popup')
['mktAgree', 'adAgree'].forEach((id) => {
document.getElementById(id).addEventListener('change', (e) => {
if (e.target.checked) open_layer_popup('checkedAgree');
});
});
</script>
</body>
</html>