- ID de exploración:
- 534c9858-fcdc-4a50-971c-5c7562fe78f7Finalizado
- URL enviada:
- https://www.poesiasf.com/application/
- Informe finalizado:
Enlaces: 0 encontrados
Los enlaces salientes identificados en la página
Variables JavaScript: 4 encontradas
Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual
Nombre | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
displayRandomFact | function |
Mensajes de registro de la consola: 1 encontrados
Mensajes registrados en la consola web
Tipo | Categoría | Registrar |
---|---|---|
error | network |
|
HTML
El cuerpo HTML sin procesar de la página
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Planet Facts</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(to bottom, #001f3f, #1a1a2e);
font-family: 'Arial', sans-serif;
color: #fff;
}
.fact-container {
text-align: center;
padding: 20px;
width: 90%;
max-width: 500px;
background: #16213e;
border-radius: 15px;
box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.4);
}
.fact-container h1 {
font-size: 2rem;
margin-bottom: 10px;
color: #f05454;
}
.fact-container p {
font-size: 1.2rem;
line-height: 1.5;
}
.fact-container button {
margin-top: 20px;
padding: 10px 20px;
background: #f05454;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
font-size: 1rem;
transition: background 0.3s;
}
.fact-container button:hover {
background: #d63b3b;
}
</style>
<script>
const planetFacts = [
"Mercury is the smallest planet in our solar system and the closest to the Sun.",
"Venus has a thick atmosphere that traps heat, making it the hottest planet.",
"Earth is the only planet known to support life and has liquid water on its surface.",
"Mars, known as the Red Planet, has the largest volcano in the solar system, Olympus Mons.",
"Jupiter is the largest planet and has a Great Red Spot, a giant storm.",
"Saturn is famous for its extensive ring system made of ice and rock.",
"Uranus rotates on its side, making it unique among the planets.",
"Neptune is known for its deep blue color and the fastest winds in the solar system.",
"Pluto, once considered the ninth planet, is now classified as a dwarf planet.",
"Venus rotates in the opposite direction of most planets in the solar system.",
"Mars has two small moons named Phobos and Deimos.",
"Jupiter's moon Ganymede is the largest moon in the solar system.",
"Saturn's moon Titan has a thick atmosphere and lakes of liquid methane.",
"Uranus appears blue-green due to methane in its atmosphere.",
"Neptune was the first planet located through mathematical predictions rather than direct observation.",
"Mercury has no atmosphere, leading to extreme temperature variations.",
"Venus has mountains and volcanoes, including Maxwell Montes, its highest peak.",
"Earth's moon affects tides and stabilizes the planet's rotation.",
"Mars has seasons similar to Earth due to its tilted axis.",
"Jupiter has 79 known moons, including Europa, which may have a subsurface ocean.",
"Saturn is less dense than water; it would float in a massive enough body of water.",
"Uranus takes 84 Earth years to orbit the Sun once.",
"Neptune has 14 known moons, with Triton being the largest.",
"Pluto has five known moons, with Charon being the largest.",
"Mercury's year is shorter than its day due to its slow rotation.",
"Venus has sulfuric acid clouds in its atmosphere.",
"Earth's atmosphere is composed of 78% nitrogen and 21% oxygen.",
"Mars has the longest canyon in the solar system, Valles Marineris.",
"Jupiter's magnetic field is 14 times stronger than Earth's.",
"Saturn's rings are composed primarily of ice particles.",
"Uranus has faint rings and 27 known moons.",
"Neptune's Great Dark Spot is similar to Jupiter's Great Red Spot but less stable.",
"Pluto's orbit sometimes brings it closer to the Sun than Neptune.",
"Mercury has water ice in permanently shadowed craters at its poles.",
"Venus has the longest day of any planet, lasting 243 Earth days.",
"Earth is the densest planet in the solar system.",
"Mars is home to dust storms that can engulf the entire planet.",
"Jupiter's moon Io has over 400 active volcanoes.",
"Saturn's moon Enceladus has geysers that shoot water into space.",
"Uranus was discovered by William Herschel in 1781.",
"Neptune was visited by Voyager 2 in 1989, the only spacecraft to do so.",
"Pluto's surface is covered in nitrogen ice.",
"Mercury's surface is heavily cratered, resembling Earth's moon.",
"Venus' surface temperature is hot enough to melt lead.",
"Earth's magnetic field protects it from solar radiation.",
"Mars' thin atmosphere is mostly carbon dioxide.",
"Jupiter's moon Europa may harbor life beneath its icy surface.",
"Saturn's moon Titan has rivers and lakes of liquid hydrocarbons.",
"Uranus' axis tilt causes extreme seasonal variations.",
"Neptune's atmosphere contains traces of methane, giving it a blue color."
];
function displayRandomFact() {
const factElement = document.getElementById('fact');
const randomFact = planetFacts[Math.floor(Math.random() * planetFacts.length)];
factElement.textContent = randomFact;
}
document.addEventListener('DOMContentLoaded', displayRandomFact);
</script>
</head>
<body>
<div class="fact-container">
<h1>Did You Know?</h1>
<p id="fact">Jupiter's magnetic field is 14 times stronger than Earth's.</p>
<button onclick="displayRandomFact()">Show Another Fact</button>
</div>
</body></html>