<div class="window">
<div class="slide">
<div class="s1">1111111111111</div>
<div class="s2">2222222222222</div>
<div class="s3">3333333333333</div>
</div>
</div>
.window{
height: 200px;
width:200px;
border: 1px solid black;
overflow:hidden;
}
.slide{
height:200px;
width:600px;//里边图片总长度
}
.slide>div{
height:200px;
width:200px;
float:left;
animation: move1 5s infinite ;
}
div.s1{
background: lightseagreen;
}
div.s2{
background: lightslategray;
}
div.s3{
background: deeppink;
}