- 扫描 ID:
- 2b2ac567-c086-4959-af26-06913897235e已完成
- 提交的 URL:
- https://error.africa/
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 3 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
控制台日志消息 · 找到 1 条
记录到 Web 控制台的消息
类型 | 类别 | 记录 |
---|---|---|
error | network |
|
HTML
页面的原始 HTML 正文
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🏴☠️ Avast Ye Matey! Rate Limit Be Here! 🏴☠️</title>
<style>
body {
font-family: "Comic Sans MS", cursive, sans-serif;
background-color: pink;
text-align: center;
margin: 0;
overflow: hidden;
}
.sliding-text-container {
position: relative;
overflow: hidden;
height: 50px;
border: 5px solid #00ff00;
padding: 10px;
background-color: purple;
}
.sliding-text {
position: absolute;
white-space: nowrap;
animation: slide 5s linear infinite alternate;
color: #ff00ff;
font-size: 2em;
width: 100%;
}
@keyframes slide {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(0%);
}
}
h1 {
font-size: 3em;
margin-top: 10%;
color: #0000ff;
text-shadow: 5px 5px 5px #ffd700;
}
p {
font-size: 2em;
color: #ffa07a;
transform: scaleX(1.1) scaleY(1.2) rotate(5deg);
display: inline-block;
background-color: #ffd700;
padding: 5px;
margin: 10px;
border: 5px dashed #8a2be2;
border-radius: 10px;
box-shadow: 0 0 10px #00ff00;
}
.flying {
width: 250px;
position: absolute;
top: 0;
left: 0;
animation: fly 5s linear infinite;
}
@keyframes fly {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(100vw, 100vh);
}
}
.professionals {
height: 350px;
display: block;
margin: auto;
}
</style>
</head>
<body>
<div class="sliding-text-container">
<div class="sliding-text">
🏴☠️ Avast Ye Matey! Your crazy pirates are working hard to provide this service! 🏴☠️
</div>
</div>
<div class="crazy">
<h1>Shiver Me Timbers! 🦜</h1>
<img src="ng2.png" class="professionals">
<p>Try again later or consult our Nigerian technicians for a swashbucklin' solution! ⚓️</p>
</div>
<img src="ng1.jpg" class="flying">
</body></html>