- スキャンID:
- aa433711-066d-4e1a-82b9-8c2f04f87f27終了
- 送信済みURL:
- https://noel-enfants.famille-debienne.fr/
- レポート終了日:
リンク · 0件検出
ページから特定された発信リンク
JavaScript変数 · 3件検出
ページのウィンドウオブジェクトにロードされたグローバルのJavaScript変数は関数以外の場所で宣言された変数で、現在のスコープ内であればコードのどこからでもアクセス可能です
名前 | 規模 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
コンソールログメッセージ · 1件検出
Webコンソールにログ記録されたメッセージ
規模 | 分類 | ログ |
---|---|---|
error | network |
|
HTML
未加工のHTMLページ本文
<!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>