Animaion Globe2

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Animation du Globe

Image :719px ×400px

HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Earth Rotating Animation</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container"></div>
</body>
</html>

*{
css margin: 0;
padding: 0;
}
body{
background: #ffffff;
}
.container{
margin:50px auto;
width: 400px;
height: 344px;
position: relative;
background:rgb(10,100,165) url(bg.png);
background-repeat: repeat-x;
background-size: cover;
border-radius:50%;
box-shadow: inset 0 0 44px;
animation: animate 2s linear infinite;
}
@keyframes animate
{
0%{
background-position: 0 0 ;
}
100%{
background-position:719px 0 ;
}
}

You might also like