파란 닷컴에 사용중하고 있는 시간별로 배경바꾸기소스 정보
javascript 파란 닷컴에 사용중하고 있는 시간별로 배경바꾸기소스
본문
<script language="JavaScript">
<!--
day=new Date()
x=day.getHours()
if(x>=0 && x<4) { // 1 ~ 4 시
document.write('<body background="http://sir.co.kr/image/logo.gif">')
} else
if(x>=4 && x<18) { // 4 ~ 18 시
document.write('<body background="http://sir.co.kr/image/v9_gbtitle.gif">')
} else
if (x>=18 && x<24) { // 저녁 6시 ~ 밤 12시
document.write('<body background="http://sir.co.kr/image/logo.gif">')
}
//-->
</script>
각 시간때에 맞추어서 자기 맘대루 배경 입력할수 있습니다.
<!--
day=new Date()
x=day.getHours()
if(x>=0 && x<4) { // 1 ~ 4 시
document.write('<body background="http://sir.co.kr/image/logo.gif">')
} else
if(x>=4 && x<18) { // 4 ~ 18 시
document.write('<body background="http://sir.co.kr/image/v9_gbtitle.gif">')
} else
if (x>=18 && x<24) { // 저녁 6시 ~ 밤 12시
document.write('<body background="http://sir.co.kr/image/logo.gif">')
}
//-->
</script>
각 시간때에 맞추어서 자기 맘대루 배경 입력할수 있습니다.
추천
0
0
댓글 전체
Good
좋은소스 알려주셔 감사...............^^
감사합니다.