메인 이미지를 요일마다 바꾸고 싶어요 정보
메인 이미지를 요일마다 바꾸고 싶어요
본문
댓글 전체
제가 드리는 팁은 요일별이 아니구
방문 할때마다 바뀌게 하는 소스입니다.
필요하시면 사용해 보세요
-------------------------------------------
<body>와 </body> 사이에 아래소스를 넣어주세요.
<script language="Javascript">
<!--
myPage=new Array()
// 바뀌며 보여줄 index 파일을 미리 만들어둡니다.
myPage[0]="index_1.html"
myPage[1]="index_2.html"
myPage[2]="index_3.html"
myPage[3]="index_4.html"
myPage[4]="index_5.html"
today=new Date()
len=5// 인덱스 페이지의 바뀔갯수를 지정합니다.
today2=today.getTime()/10
rnd=today2 % len
location.replace(myPage[rnd])
//-->
</script>
방문 할때마다 바뀌게 하는 소스입니다.
필요하시면 사용해 보세요
-------------------------------------------
<body>와 </body> 사이에 아래소스를 넣어주세요.
<script language="Javascript">
<!--
myPage=new Array()
// 바뀌며 보여줄 index 파일을 미리 만들어둡니다.
myPage[0]="index_1.html"
myPage[1]="index_2.html"
myPage[2]="index_3.html"
myPage[3]="index_4.html"
myPage[4]="index_5.html"
today=new Date()
len=5// 인덱스 페이지의 바뀔갯수를 지정합니다.
today2=today.getTime()/10
rnd=today2 % len
location.replace(myPage[rnd])
//-->
</script>
정말 감사드려요. 방문할때마다 바껴도 상관 없어요. ^^ 정말 고맙습니다.