<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Globo Terráqueo Giratorio y en Traslación</title>
<style>
.orbit-container {
position: relative;
width: 400px;
height: 400px;
margin: 50px auto;
border: 1px solid transparent;
border-radius: 50%;
overflow: hidden;
animation: orbit 20s infinite linear;
}
.globe-container {
position: absolute;
top: 50%;
left: 50%;
width: 100px;
height: 100px;
margin: -50px;
border: 1px solid transparent;
border-radius: 50%;
overflow: hidden;
background: url('http://monedas.firmasantander.com/wp-content/uploads/2024/07/50c-1902-11.png') top left no-repeat;
background-size: cover;
animation: rotate 5s infinite linear;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@keyframes orbit {
0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}
</style>
</head>
<body>
<div class="orbit-container">
<div class="globe-container"></div>
</div>
</body>
</html>

No hay archivos que mostrar.