第三种
点击左右按钮(下方小圆点)移动类型
CSS编写样式,JS构建函数事件
CSS样式
<style>
*{margin:0;
padding: 0;}
.carousel{
width: 960px;
height: 320px;
position: relative;
margin: auto;
overflow: hidden;
}
.imgCon{
width: 4800px;
height: 320px;
position: absolute;
left: 0;
font-size: 0;
transition: all 2s;
}
.imgCon img{
width: 960px;
height: 320px;
}
.dot{
list-style: none;
position: absolute;
bottom: 20px;
left: 385px;
}
.dot>li{
width: 18px;
height: 18px;
border-radius: 50%;
border:1px solid red;
background: rgba(255,0,0,0);
float: left;