发布网友 发布时间:2022-04-24 12:22
共3个回答
热心网友 时间:2023-10-12 17:25
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
window.onload=function(){
var oImg=document.getElementById('img1');
var arrImgUrl=["img/1.jpg","img/2.jpg","img/3.jpg","img/4.jpg"]
var num=0;
function Tab(){
num++;
if(num>arrImgUrl.length-1){
num=0;
}
oImg.src=arrImgUrl[num];
}
setInterval(Tab,1000)
}
</script>
</head>
<body>
<img id="img1" src="img/1.jpg" width="288">
</body>
</html>
注意图片放在 名称为 img 的文件夹中,而且是格式的,否则需要修改html
热心网友 时间:2023-10-12 17:25
百度一艘 一大堆
热心网友 时间:2023-10-12 17:26
轮播图 中午教你 现在在上班