¼¼°¡Áö À̹ÌÁö°¡ ÀÚ¿¬½º·´°Ô ¹Ù²ò´Ï´Ù.
<script>
<!--
var img1 = new Image();
img1.src = "
img1.gif
";
var img2 = new Image();
img2.src = "
img2.gif
";
var img3 = new Image();
img3.src = "
img3.gif
";
//-->
</script>
<BODY onload="init();">
<DIV style="LEFT:
100
px; POSITION: absolute; TOP:
20
px; WIDTH: 186px; Z-INDEX: 10">
<!--À§Ä¡-->
<IMG border=0 name=blendObj src="
img1.gif
" style="FILTER: blendTrans(duration=
3
)"> </DIV>
<!--¼Óµµ-->
<script>
<!--
var maxLoops = 3;
var bInterval =
1
;
//¸ØÃß¾î ÀÖ´Â ½Ã°£
var count = 2;
function init() {
blendObj.filters.blendTrans.apply();
document.images.blendObj.src = eval("img"+count+".src");
blendObj.filters.blendTrans.play();
if (count < maxLoops) {
count++;
}
else {
count = 1;
}
setTimeout("init()", bInterval*1000+3000);
}
//-->
</script>