- 제출된 URL:
- https://brainstorm2024.co.uk/
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 3개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
콘솔 로그 메시지 · 1개 결과
웹 콘솔에 기록된 메시지
유형 | 카테고리 | 로그 |
---|---|---|
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>