- 扫描 ID:
- f0025573-55c1-4fba-8068-77f53251c152已完成
- 提交的 URL:
- https://brainstorm2024.co.uk/
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 3 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
控制台日志消息 · 找到 1 条
记录到 Web 控制台的消息
类型 | 类别 | 记录 |
---|---|---|
error | network |
|
HTML
页面的原始 HTML 正文
<!DOCTYPE html><html><head>
<title>Javascript</title>
<style type="text/css">
#game-container {
width: 900px;
height: 700px;
margin: 100px 50px 50px 50px;
clear: both;
/* box-shadow: silver 0px 0px 30px; */
}
#h2 {
font-size: 20px;
}
#shape {
cursor: pointer;
position: relative;
}
#timer {
color: blue;
}
#yourTime {
font-weight: bold;
font-size: 20px;
float: left;
width: 200px;
padding: 5px;
}
#bestTime {
font-weight: bold;
font-size: 20px;
float: left;
width: 150px;
padding: 5px;
}
#averageTime {
font-weight: bold;
font-size: 20px;
float: left;
width: 200px;
padding: 5px;
}
#position {
font-weight: bold;
font-size: 20px;
float: left;
width: 200px;
padding: 5px;
}
#pos {
color: tomato;
}
#bestDisplay {
color: green;
}
#averageDisplay {
color: SlateBlue;
}
input, button {
font-size: 24px;
border-radius: 5px;
text-align: center;
}
button {
cursor: pointer;
}
button:hover {
cursor: pointer;
background-color: pink;
}
input {
width: 250px;
}
form {
width: 450px;
margin: 20px auto;
}
#message {
height: 200px;
}
.num, .name, .best {
font-size: 20px;
padding: 5px;
}
.num {
background-color: SlateBlue;
color: white;
}
.name {
background-color: orange;
}
.best {
background-color: teal;
color: white;
}
</style>
</head>
<body>
<div id="message">
<form method="post">
<input type="text" placeholder="name" name="name">
<button type="submit">Start Game</button>
</form>
</div>
</body></html>