묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
시간대별 배경이미지 변경 스크립트 관련 문의드립니다.
2016.05.14 16:36
아래의 소스로 시간대별로는 변경이 되는것 같은데 분단위로 설정하려면 어떤게 더 필요한가요?
예를 들어 8시30~9시30 등...
답변 부탁드립니다.
시간대별 배경 이미지 변경 소스에서 각 이미지를 전체화면 고정시키고 싶은데...
<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>