- 掃描 ID:
- 8e10d67d-56cc-4ebf-ba51-bc097b3747e0已完成
- 已提交的 URL:
- https://undelivered.io/
- 報告完成時間:
連結 · 找到 0 個
從頁面中識別的傳出連結
JavaScript 變數 · 找到 4 個
在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取
名稱 | 類型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
playVideo | function |
主控台記錄訊息 · 找到 0 條
記錄到 Web 主控台的訊息
HTML
頁面的原始 HTML 主體
<!DOCTYPE html><html lang="el"><head>
<meta charset="UTF-8">
<title>Undelivered Α.Ε</title>
<style type="text/css">
body {
text-align: center;
margin-top: 250px;
font-size: 30px;
text-decoration: none;
}
video {
position: fixed;
width: auto;
height: auto;
top: 0;
right: 0;
left: 0;
bottom: 0;
z-index: -100;
min-width: 100%;
min-height: 100%;
display: none; /* Hide initially */
}
</style>
</head>
<body>
<video id="bgVideo" loop="">
<source src="bg.mp4" type="video/mp4">
</video>
<h3>Undelivered A.E</h3>
<h2>Τα σιφόνια του <b>Ι Ν Τ Ε Ρ Ν Ε Τ</b>!</h2>
<small><strong>Μαζί σας από το 2000 κάνουμε καθαρισμό inbox και εξολόθρευση spam emails σε όλες τις περιοχές του διαδικτύου.<br>Εξειδικευόμαστε στο ξεβούλωμα από newsletters και άχρηστα διαφημιστικά.</strong></small>
<br>
<small><strong><a href="#" onclick="playVideo(); return false;">Κάντε κλικ εδώ για να παίξετε το βίντεο</a></strong></small>
<script>
function playVideo() {
const video = document.getElementById('bgVideo');
video.style.display = 'block'; // Show the video
video.play(); // Play the video
}
</script>
</body></html>