- 제출된 URL:
- https://noel-enfants.famille-debienne.fr/
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 3개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
콘솔 로그 메시지 · 1개 결과
웹 콘솔에 기록된 메시지
유형 | 카테고리 | 로그 |
---|---|---|
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>