- 扫描 ID:
- b5a814ba-2a85-441e-9117-2bb22440ebbf已完成
- 提交的 URL:
- https://amorn.xyz/
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 7 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
platformLanguage | string |
elemsRU | undefined |
elemsEN | undefined |
l | undefined |
控制台日志消息 · 找到 1 条
记录到 Web 控制台的消息
类型 | 类别 | 记录 |
---|---|---|
error | network |
|
HTML
页面的原始 HTML 正文
<!DOCTYPE html><html><head>
<title>Welcome!</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
* {
margin: 0;
padding: 0;
border: 0 none;
background: none;
}
body {
font-weight: normal;
font-size: 11px;
font-family: Arial;
}
#login-wrapper {
width: 270px;
left: 50%;
margin-left: -135px;
position: absolute;
margin-top: -135px;
top: 50%;
}
#login-form {
width: 270px;
background: #5DDF94;
height: 270px;
-webkit-border-radius: 135px;
-moz-border-radius: 135px;
border-radius: 135px;
}
ul li {
list-style: none;
}
.body-login-form .tab-content {
position: inherit;
padding: inherit;
}
.b-title {
text-align: center;
padding-top: 80px;
color: white;
margin-bottom: 20px;
font-size: 27px;
}
.b-content {
font-size: 20px;
color: #FFF;
text-align: center;
}
.b-content2 {
font-size: 12px;
color: #FFF;
text-align: center;
}
.b-copyright {
margin-top: 40px;
text-align: center;
}
.b-copyright_link {
color: #737373;
}
.b-text_lang_ru {
display: none;
}
</style>
</head>
<body class="body-login-form">
<div id="main-wrapper">
<div id="overlay" class="hide"></div>
<div id="content" class="tab-content active" data-tabid="tab1"><div id="login-wrapper">
<div id="login-form">
<div id="login-form-form">
<h2 class="b-title b-text b-text_lang_en">Welcome!</h2>
<h2 class="b-title b-text b-text_lang_ru">Приветствуем!</h2>
<div class="b-content">
<span class="b-text b-text_lang_en">amorn.xyz</span>
<span class="b-text b-text_lang_ru">amorn.xyz</span>
<br>
</div>
<div class="b-content2">
<span class="b-text b-text_lang_en">Site just created.</span>
<span class="b-text b-text_lang_ru">Сайт только что создан.</span>
</div>
</div>
</div>
<div id="error-log" style="display: none;"></div>
</div></div>
</div>
<script type="text/javascript">
var platformLanguage = navigator && (
navigator.language ||
navigator.browserLanguage ||
navigator.systemLanguage ||
navigator.userLanguage ||
null ),
elemsRU, elemsEN;
if (platformLanguage.match("ru") && document.getElementsByClassName) {
elemsRU = document.getElementsByClassName("b-text_lang_ru");
elemsEN = document.getElementsByClassName("b-text_lang_en");
var l = elemsEN.length;
while(l--) {
elemsEN[l].style.display = "none";
}
l = elemsRU.length;
while(l--) {
elemsRU[l].style.display = "block";
}
document.title = "Приветствуем!";
}
</script>
</body></html>