- 扫描 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>