|
|
|
|
||
自动定时展示图片代码(不带链接):
<SCRIPT language=javascript>
var curIndex=0;
//时间间隔 单位毫秒
var timeInterval=5000;
var arr=new Array();
arr[0]="/user/it2009/webimg/200967/20096722259620.jpg";//图片链接地址
arr[1]="/user/it2009/webimg/200967/20096722341185.jpg";
arr[2]="/user/it2009/webimg/200967/20096722358569.jpg";
arr[3]="/user/it2009/webimg/200967/20096722427624.jpg";
arr[4]="/user/it2009/webimg/200967/20096722439262.jpg";
arr[5]="/user/it2009/webimg/200967/20096722452402.jpg";
arr[6]="/user/it2009/webimg/200967/200967225148321.jpg";
arr[7]="/user/it2009/webimg/200967/200967225336114.jpg";
setInterval(changeImg,timeInterval);
function changeImg()
{
var obj=document.getElementById("obj");
if (curIndex==arr.length-1)
{
curIndex=0;
}
else
{
curIndex+=1;
}
obj.src=arr[curIndex];
}
</SCRIPT>
<TD class=bottom_bg width=357 background=/user/redrose/images/background.gif><IMG id=obj style="BORDER-LEFT-COLOR: #ff0000; FILTER: Glow(Color=#ff9900, Strength=5); BORDER-BOTTOM-COLOR: #ff0000; WIDTH: 355px; BORDER-TOP-COLOR: #ff0000; HEIGHT: 236px; BORDER-RIGHT-COLOR: #ff0000" height=240 alt=本站图片导航 hspace=0 src="http://a.cdn.zhuolaoshi.cn/user/it2009/webimg/200967/20096722259620.jpg" width=435 border=1></TD>