- 掃描 ID:
- d922024a-aa0d-482f-9124-689bc622315d已完成
- 已提交的 URL:
- https://www.jawbone.com/
- 報告完成時間:
連結 · 找到 1 個
從頁面中識別的傳出連結
連結 | Text |
---|---|
https://status.squarespace.com | status.squarespace.com |
JavaScript 變數 · 找到 4 個
在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取
名稱 | 類型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
showStatusPage | function |
主控台記錄訊息 · 找到 1 條
記錄到 Web 主控台的訊息
類型 | 類別 | 記錄 |
---|---|---|
error | network |
|
HTML
頁面的原始 HTML 主體
<!DOCTYPE html><html><head>
<title>503 Service Unavailable</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
body {
background: white;
}
main {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
min-width: 95vw;
}
main h1 {
font-weight: 400;
font-size: 4.6em;
color: #191919;
margin: 0 0 11px 0;
}
main p {
font-size: 1.4em;
color: #3a3a3a;
font-weight: 400;
line-height: 2em;
margin: 0;
}
main p a {
color: #3a3a3a;
text-decoration: none;
border-bottom: solid 1px #3a3a3a;
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
}
#status-page {
display: none;
}
footer {
position: absolute;
bottom: 22px;
left: 0;
width: 100%;
text-align: center;
line-height: 2em;
}
footer span {
margin: 0 11px;
font-size: 1em;
font-weight: 400;
color: #a9a9a9;
white-space: nowrap;
}
footer span strong {
font-weight: 400;
color: #191919;
}
@media (max-width: 600px) {
body {
font-family: "Helvetica Neue", Helvetica, Arial, Sans-Serif;
}
}
</style>
</head>
<body>
<main>
<h1>503 Service Unavailable</h1>
<p id="status-page" style="display: block;">Please visit <a href="https://status.squarespace.com">status.squarespace.com</a> for updates</p>
</main>
<footer>
<span><strong>1FAqhUwq/EXIP2Ajb @ Thu, 14 Nov 2024 14:36:33 UTC</strong></span>
<span></span>
</footer>
<script>
function showStatusPage(){
var statusCode = 503 ;
var statusPageEl = document.getElementById('status-page');
if(!statusPageEl) { return; }
if (statusCode && statusCode >= 500 && statusCode <= 599) {
statusPageEl.style.display = 'block';
} else {
statusPageEl.style.display = 'none';
}
};
try {
showStatusPage();
} catch (error) {
console.log(error)
}
</script>
</body></html>