https://brainstorm2024.co.uk/

已提交的 URL:
https://brainstorm2024.co.uk/
報告完成時間:

連結 · 找到 0 個

從頁面中識別的傳出連結

JavaScript 變數 · 找到 3 個

在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取

名稱類型
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

主控台記錄訊息 · 找到 1 條

記錄到 Web 主控台的訊息

類型類別記錄
errornetwork
URL
https://brainstorm2024.co.uk/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

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>