Live Brilliant

레이어 팝업 <공지사항> 본문

개발은 핵찜이야/HTML/CSS

레이어 팝업 <공지사항>

주인정 2012. 4. 13. 15:56

<STYLE type=text/css>
#wrap{ position:relative; margin:0 auto; width:960px;}
</STYLE>
<script language="JavaScript">
<!--
function setCookie( name, value, expirehours ) {
var todayDate = new Date();
todayDate.setHours( todayDate.getHours() + expirehours );
document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}

function closeWin() {
if ( document.notice_form.chkbox.checked ){
setCookie( "ncookie", "done" , 24 );
}
document.getElementById('k_popup').style.display = "none";
}

//-->
</script>
<!-- 최상 div-->
<div id="wrap">

<!--전체레이어-->
<div id="k_popup" style="position:absolute; top:124px; left:195px; width:400px; height:500px; z-index:2">

<!--이미지 레이어-->
<div>
<img src="layer_pop_02.jpg" width="530" height="310" border="1" USEMAP="#eventMap1">
</div>

<!--체크박스 레이어-->
<div style="position:absolute; top:288px; left:325px; width:50px; height:50px;">
<form name='notice_form'>
<input type='checkbox' name='chkbox' value='checkbox'>
</form>
</div>
</div>
<map name="eventMap1">
<AREA SHAPE="rect" COORDS="0,0,530,287" HREF="http:// 도메인 /_payment/cash.php" onFocus="this.blur()" >
<AREA SHAPE="rect" COORDS="344,291,479,308" HREF="" onFocus="this.blur()" >
<AREA SHAPE="rect" COORDS="490,291,526,307" href="javascript:closeWin();" onFocus="this.blur()">
</map>
</div>
<script language="JavaScript">
<!--
cookiedata = document.cookie;
if ( cookiedata.indexOf("ncookie=done") < 0 ){
document.getElementById('k_popup').style.display = "block";
}
else {
document.getElementById('k_popup').style.display = "none";
}

-->
</script>

Comments