**<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
ul{
height: 400px;
margin-top: 100px;
background-color: skyblue;
position: relative;
animation:change 5s linear 0s infinite alternate;
overflow: hidden;
}
li{
list-style: none;
position: absolute;
height: 100%;
width: 400%;
left: -300%;
top: 0;
}
li:nth-child(1){
background-image: url("images-100/cloud_one.png");
animation:one 30s linear 0s infinite alternate;
}
li:nth-child(2){
background-image: url("images-100/cloud_two.png");
animation:two 30s linear 0s infinite alternate;
}
li:nth-child(3){
background-image: url("images-100/cloud_three.png");
animation:three 30s linear 0s infinite alternate;
}
@keyframes change{
from{
background-color: skyblue;
}to{
background-color: #000000;
}
}
@keyframes one{
from{
left: -300%;
}to{
left: 0%;
}
}
@keyframes two{
from{
left:-200%;
}to{
left: 0%;
}
}
@keyframes three{
from{
left:-100%;
}to{
left: 0%;
}
}
</style>
</head>
<body>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</body>
</html>**


