- Scan-ID:
- aa433711-066d-4e1a-82b9-8c2f04f87f27Beendet
- Eingereichte URL:
- https://noel-enfants.famille-debienne.fr/
- Bericht beendet:
Links · 0 gefunden
Die von der Seite ausgehenden identifizierten Links
JavaScript-Variablen · 3 gefunden
Globale JavaScript-Variablen, die in das Window Object einer Seite geladen werden, sind Variablen, die außerhalb von Funktionen deklariert werden und von jeder Stelle des Codes innerhalb des aktuellen Bereichs zugänglich sind
Name | Typ |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Konsolenprotokoll-Meldungen · 1 gefunden
In der Web-Konsole protokollierte Meldungen
Typ | Kategorie | Protokoll |
---|---|---|
error | network |
|
HTML
Der HTML-Rohtext der Seite
<!DOCTYPE html><html lang="fr"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Enfants</title>
<style>
/* Styles de la barre de chargement */
.loader-container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
/* Ajout de l'image de fond */
background-image: url('christmas-background.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.loader {
width: 50%;
background-color: #ddd;
border-radius: 25px;
}
.loader-bar {
width: 0;
height: 30px;
background-color: #4caf50;
border-radius: 25px;
text-align: center;
line-height: 30px;
color: white;
}
</style>
</head>
<body>
<div class="loader-container">
<div class="loader">
<div class="loader-bar" id="loader-bar" style="width: 24%;">24%</div>
</div>
</div>
<script>
// Fonction pour simuler la barre de chargement
let width = 0;
const loaderBar = document.getElementById("loader-bar");
function load() {
if (width >= 100) {
// Redirection vers index.php après le chargement
window.location.href = "index.php";
} else {
width++;
loaderBar.style.width = width + "%";
loaderBar.innerHTML = width + "%";
setTimeout(load, 30); // Simule la progression
}
}
// Démarre la barre de chargement au chargement de la page
window.onload = load;
</script>
</body></html>