본문 바로가기

xhtml

레이어팝업 하루동안...

출처 : http://blog.naver.com/mirya_net/90132804206

 

레이어팝업 하루동안 열지않음 과 그냥 닫기

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">


<meta charset="UTF-8">

<head>


<!-- 레이어팝업시작 -->

<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() { 

document.getElementById('popup').style.display = "none";

}

function todaycloseWin() { 

setCookie( "ncookie", "done" , 24 ); 

document.getElementById('popup').style.display = "none";

}

-->

</script>


</head>


 


<body>

<div id="popup" style="position:absolute; left:50%; top:120px; margin-left:-500px; z-index:1000;">

경기도 정보통신망 인프라 구축에 따른 홈페이지 일시중단 안내



○ 중단일시

   - 2018.2.10.(토) 18:00 ~ 2.11.(일) 06:00

    - 2018.2.13.(화) 22:00 ~ 2.14.(수) 06:00

   ※ 서비스 중단 시간은 작업 상황에 따라 다소 변동될 수 있음


○ 중단사유 : 경기도 정보통신망 장비 교체


○ 중단업무

   - 부천시, 행정복지센터, 보건소, 예약, 대형폐기물, 상수도 등 전체 홈페이지(전자민원 포함)

    - 회원통합관리서비스(SSO) 등



<a href="#" onclick="closeWin();" alt="닫기"> 닫기 </a>

<a href="#" onclick="todaycloseWin();" alt="오늘 하루 열지 않기" style="margin-left:50px;"> 오늘 하루 열지 않기</a>

<!--쿠키 설정 -->

<script language="Javascript">

<!--

cookiedata = document.cookie; 

if ( cookiedata.indexOf("ncookie=done") < 0 ){ 

document.getElementById('popup').style.display = "block";

} else {

document.getElementById('popup').style.display = "none"; 

}

-->

</script>


</div>


</body>


</html>

'xhtml' 카테고리의 다른 글

ie7 overflow-y:scroll 버그  (0) 2013.08.01
embed 동영상 태그  (0) 2013.07.12
동영상 태그  (0) 2013.06.17