<html>
<head>
</head>
<body>
<script language="javascript">
//시간 (1초 = 1000)
var delay=1000
var curindex=0
var randomimages=new Array()
//이미지
randomimages[0]="http://oxtag.com/html/img/banner1.gif"
randomimages[1]="http://oxtag.com/html/img/banner4.gif"
randomimages[2]="http://oxtag.com/html/img/banner3.gif"
randomimages[3]="http://oxtag.com/html/img/banner/jjin_tagpia.gif"
randomimages[4]="http://oxtag.com/html/img/banner/sole_tagpia1.gif"
randomimages[5]="http://oxtag.com/html/img/banner2.gif"
var preload=new Array()
for (n=0;n<randomimages.length;n++)
{
preload[n]=new Image()
preload[n].src=randomimages[n]
}
document.write('<img name="defaultimage" src="'+randomimages[Math.floor(Math.random()*(randomimages.length))]+'">')
function rotateimage()
{
if (curindex==(tempindex=Math.floor(Math.random()*(randomimages.length)))){
curindex=curindex==0? 1 : curindex-1
}
else
curindex=tempindex
document.images.defaultimage.src=randomimages[curindex]
}
setInterval("rotateimage()",delay)
</script>
</body>
</html>
- 펌 - http://suldo.zotta.net/
'인터넷정보' 카테고리의 다른 글
배경음악 정지버튼 이미지로 하기 (0) | 2007.10.17 |
---|---|
마우스 + 키보드 막기 (0) | 2007.10.17 |
마우스 + 키보드 막기 (0) | 2007.10.17 |
레이어의 크기를 사용자가 변경시켜보자! (0) | 2007.10.17 |
레이어의 크기를 사용자가 변경시켜보자! (0) | 2007.10.17 |
이미지 지정 시간동안 보여주고 다른 이미지 로딩 (0) | 2007.10.17 |
JS 한영 전환 버튼 (0) | 2007.10.17 |
JS 한영 전환 버튼 (0) | 2007.10.17 |
간단한 서브 토글 메뉴 (0) | 2007.10.17 |
간단한 서브 토글 메뉴 (0) | 2007.10.17 |