- 掃描 ID:
- 6259e56d-2b01-49be-9c0d-b24e84e95ccb已完成
- 已提交的 URL:
- https://rellykel.site/
- 報告完成時間:
連結 · 找到 0 個
從頁面中識別的傳出連結
JavaScript 變數 · 找到 4 個
在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取
名稱 | 類型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
checkAge | function |
主控台記錄訊息 · 找到 1 條
記錄到 Web 主控台的訊息
類型 | 類別 | 記錄 |
---|---|---|
error | network |
|
HTML
頁面的原始 HTML 主體
<!DOCTYPE html><html lang="uk"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Age verification</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
background-color: #f4f4f4;
}
.background {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
filter: blur(10px);
z-index: -1;
}
.container {
text-align: center;
z-index: 1;
background-color: rgba(255, 255, 255, 0.9);
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
max-width: 400px;
width: 100%;
}
h1 {
font-size: 24px;
margin: 0 0 20px;
}
button {
font-size: 18px;
padding: 10px 20px;
cursor: pointer;
border: none;
border-radius: 5px;
color: #fff;
margin: 0 10px;
}
.yes-button {
background-color: #4CAF50;
}
.no-button {
background-color: #F44336;
}
@media (max-width: 480px) {
.container{
margin: 0 20px 0 20px;
}
h1 {
font-size: 32px;
}
button {
font-size: 26px;
padding: 20px 40px;
}
}
</style>
</head>
<body>
<div class="background"></div>
<div class="container">
<h1>Are you over 18 years old?</h1>
<button class="yes-button" onclick="checkAge(true)">Yes</button>
<button class="no-button" onclick="checkAge(false)">No</button>
</div>
<script>
function checkAge(isAdult) {
if (isAdult) {
window.open('https://molliant.online');
} else {
window.open('https://molliant.online');
}
}
</script>
</body></html>