Project Numbers
Code breakdown
HTML Structure:
The HTML structure consists of a <div> container that holds the game elements.
Inside the container, there is an <h1> heading displaying the game title.
A <p> element provides instructions to the user to guess a number between 1 and 100.
An <input> element of type "number" allows the user to enter their guess.
Two buttons, <button>, are provided for the user to submit their guess or reset the game.
A <div> element with the class "result" is used to display the result of the guess (e.g., too low, too high, correct).
Another <div> element with the id "message" is used to display additional messages, such as the correct number if the guess is wrong.
An <input> element of type "hidden" with the id "randomNumber" is used to store the randomly generated number.
CSS Styling:
The CSS styling defines the appearance of the game elements, including the container, heading, input field, buttons, and result and message sections.
The animation effects, such as the slide-in animation for the container and the glow animation for the correct number, are defined using the @keyframes rule.
JavaScript Functions:
The generateRandomNumber() function generates a random number between a given minimum and maximum value.
The checkGuess() function is called when the user clicks the "Submit" button. It retrieves the user's guess and the random number, compares them, and displays an appropriate message in the result element and the message element.
If the guess is not a valid number, it displays an error message along with the correct number.
If the guess is too low or too high, it displays a corresponding message along with the correct number.
If the guess is correct, it displays a congratulations message and removes the text from the message element. It also adds the "highlight" class to the message element, triggering the glow animation effect for the correct number.
The resetGame() function is called when the user clicks the "Reset" button. It resets the input field, result message, message element, and generates a new random number.
Initialization:
The JavaScript code includes an initialization script that generates a random number between 1 and 100 and stores it in the "randomNumber" input field when the page loads.
Program Details (HTML)
<!DOCTYPE html>
<html>
<head>
<title>Number Guessing Game</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container">
<h1>Number Guessing Game</h1>
<p>Guess a number between 1 and 100:</p>
<input type="number" id="guessInput" class="guess-input" placeholder="Enter your guess" min="1" max="100">
<div class="button-container">
<button class="btn" onclick="checkGuess()">Submit</button>
<button class="btn" onclick="resetGame()">Reset</button>
</div>
<div class="result" id="result"></div>
<div id="message"></div>
<input type="hidden" id="randomNumber" value="">
</div>
<script src="script.js"></script>
</body>
</html>
Program Details (CSS)
body {
font-family: Arial, sans-serif;
}
.container {
max-width: 400px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
position: relative;
animation: slideIn 1s ease-in-out;
}
@keyframes slideIn {
0% {
opacity: 0;
transform: translateY(-100%);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
h1 {
text-align: center;
}
.guess-input {
width: 100%;
padding: 10px;
margin-bottom: 10px;
box-sizing: border-box;
}
.result {
text-align: center;
font-weight: bold;
margin-top: 20px;
opacity: 0;
animation: fadeIn 1s ease-in-out forwards;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.button-container {
text-align: center;
margin-top: 20px;
}
.btn {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.highlight {
animation: glow 1s infinite alternate;
}
@keyframes glow {
0% {
text-shadow: 0 0 5px #fff;
}
100% {
text-shadow: 0 0 20px #4CAF50, 0 0 30px #4CAF50, 0 0 40px #4CAF50;
}
}
Program Details (JAVASCRIPT)
body {
font-family: Arial, sans-serif;
}
.container {
max-width: 400px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
position: relative;
animation: slideIn 1s ease-in-out;
}
@keyframes slideIn {
0% {
opacity: 0;
transform: translateY(-100%);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
h1 {
text-align: center;
}
.guess-input {
width: 100%;
padding: 10px;
margin-bottom: 10px;
box-sizing: border-box;
}
.result {
text-align: center;
font-weight: bold;
margin-top: 20px;
opacity: 0;
animation: fadeIn 1s ease-in-out forwards;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.button-container {
text-align: center;
margin-top: 20px;
}
.btn {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.highlight {
animation: glow 1s infinite alternate;
}
@keyframes glow {
0% {
text-shadow: 0 0 5px #fff;
}
100% {
text-shadow: 0 0 20px #4CAF50, 0 0 30px #4CAF50, 0 0 40px #4CAF50;
}
}