用javascript编写一个完整的交换式图像
1个回答
展开全部
你说的是图片定时切换吗?这是我写的,你看看,注意在网页相同位置放入三张图片,命名为0.jpg,1.jpg,2.jpg .
<html>
<head>
<script type="text/javascript">
var i=0;
window.onload=function(){ window.setInterval(getImg,1000); }
function getImg(){
i++;
if(i>2) //3张图片切换
{
i=0;
}
document.getElementById("myImg").src=i+".jpg";
}
</script>
</head>
<body>
<img id="myImg" src="0.jpg" style="max-width:300px"/>
</body>
</html>
<html>
<head>
<script type="text/javascript">
var i=0;
window.onload=function(){ window.setInterval(getImg,1000); }
function getImg(){
i++;
if(i>2) //3张图片切换
{
i=0;
}
document.getElementById("myImg").src=i+".jpg";
}
</script>
</head>
<body>
<img id="myImg" src="0.jpg" style="max-width:300px"/>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询