
- UID
- 510205
- 帖子
- 32
- 精华
- 0
- 威望
- 0
- 阅读权限
- 100
- 注册时间
- 2009-1-26
|
<script language="javascript">
setInterval("showPic();",2000);
var stopFlg = true;
function showPic()
{
var pic1 = document.getElementById("picture1");
var pic2 = document.getElementById("picture2");
var pic3 = document.getElementById("picture3");
var pic4 = document.getElementById("picture4");
var pic5 = document.getElementById("picture5");
if (stopFlg)
{
if(pic1.style.display=="")
{
pic1.style.display = "none";
pic2.style.display = "";
}
else if(pic2.style.display=="")
{
pic2.style.display = "none";
pic3.style.display = "";
}
else if(pic3.style.display=="")
{
pic3.style.display = "none";
pic4.style.display = "";
}
else if(pic4.style.display=="")
{
pic4.style.display = "none";
pic5.style.display = "";
}
else
{
pic5.style.display = "none";
pic1.style.display = "";
}
}
}
function stopShow()
{
stopFlg = false;
}
function conShow()
{
stopFlg = true;
}
setInterval("showPic();",2000); 貌似就是这个2000? |
|