注:需载入jquery3.0版本及以上
css代码块 //也可根据喜好自行设置;
<style>
#box{
width: 500px;
height: 300px;
border: 1px solid skyblue;
margin: auto;
margin-top: 200px;
}
#box img{
width: 500px;
height: 300px;
position: absolute;
display: none;
}
</style>
html代码块
<div id="box">
/*自行载入图片地址*/
<img src="./1.png">
<img src="./2.jpg">
<img src="./3.jpg">
</div>
Jquery代码块
<script>
$(function(){ //自执行函数;
var index=0; //下标从0开始;
setInterval(function(){ //时间函数;
index++; //图片显示递增循环;
if(index >=$("#box img").length){
index = 0; //如果下标大于总图片下标那么继续从0下标开始循环;
}
$("#box img").eq(index).show().siblings().hide(); //当前图片显示其他兄弟图片隐藏;
},1000) //每个1秒显示另一张图片;
})
</script>