시간별로 배경바꾸기소스
로빈아빠
본문
<script language="JavaScript">
<!--
day=new Date()
x=day.getHours()
if(x>=0 && x<4) { // 1 ~ 4 시
document.write('<body background="./images/11.gif">')
} else
if(x>=4 && x<18) { // 4 ~ 18 시
document.write('<body background="./images/22.gif">')
} else
if (x>=18 && x<24) { // 저녁 6시 ~ 밤 12시
document.write('<body background="./images/33.gif">')
}
//-->
</script>
출처 : http://qdata.co.kr/bo/bbs/board.php?bo_table=pht&wr_id=65
<!--
day=new Date()
x=day.getHours()
if(x>=0 && x<4) { // 1 ~ 4 시
document.write('<body background="./images/11.gif">')
} else
if(x>=4 && x<18) { // 4 ~ 18 시
document.write('<body background="./images/22.gif">')
} else
if (x>=18 && x<24) { // 저녁 6시 ~ 밤 12시
document.write('<body background="./images/33.gif">')
}
//-->
</script>
출처 : http://qdata.co.kr/bo/bbs/board.php?bo_table=pht&wr_id=65
관련링크
댓글목록
등록된 댓글이 없습니다.