시간대별로 배경이미지 바꾸기
본문
<script language="Javascript">
day=new Date()
x=day.getHours()
//0시부터 12시사이의 시간에 나타낼 배경주소
if(x>=0 && x<12) {
document.write('<body background="이미지주소">')
} else
//13시부터 24시까지 나타낼 배경주소
if(x>=13 && x<24) {
document.write('<body background="이미지주소">')
}
</script>
출처 : http://www.aircon1004.com/data/bbs/board.php?bo_table=pds1&wr_id=207
day=new Date()
x=day.getHours()
//0시부터 12시사이의 시간에 나타낼 배경주소
if(x>=0 && x<12) {
document.write('<body background="이미지주소">')
} else
//13시부터 24시까지 나타낼 배경주소
if(x>=13 && x<24) {
document.write('<body background="이미지주소">')
}
</script>
출처 : http://www.aircon1004.com/data/bbs/board.php?bo_table=pds1&wr_id=207
관련링크
댓글목록
등록된 댓글이 없습니다.