Skip to content

Commit 741213c

Browse files
Tried to add Wordle to my page
1 parent 4583be0 commit 741213c

File tree

3 files changed

+100
-5
lines changed

3 files changed

+100
-5
lines changed

2024/BeaBergst/index.html

+12-4
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,21 @@ <h2>Hi </h2>
2222
<img src="/2024/BeaBergst/IMG_5308.jpg"/>
2323
<p></p>
2424
</section>
25-
</main>
26-
25+
</main>
26+
<div id="wordle">
27+
<h1>Wordle Game</h1>
28+
<div id="game-container">
29+
<div id="board"></div>
30+
<input type="text" id="guess-input" maxlength="5" placeholder="Enter a 5-letter word" />
31+
<button id="submit-button">Submit</button>
32+
<div id="message"></div>
33+
</div>
34+
</div>
35+
2736
<footer>
2837
<!-- Your footer content goes here -->
2938
<p>&copy; 2024 Bea All rights reserved.</p>
3039
</footer>
40+
<script src="/2024/BeaBergst/script.js"></script>
3141
</body>
3242
</html>
33-
34-
}

2024/BeaBergst/script.js

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
const wordList = ['apple', 'grape', 'mango', 'berry', 'peach', 'lemon', 'cherry', 'melon', 'plum', 'pear'];
2+
const word = wordList[Math.floor(Math.random() * wordList.length)];
3+
const maxAttempts = 6;
4+
let attempts = 0;
5+
6+
function createBoard() {
7+
const board = document.getElementById('board');
8+
for (let i = 0; i < maxAttempts; i++) {
9+
const row = document.createElement('div');
10+
row.className = 'row';
11+
for (let j = 0; j < 5; j++) {
12+
const cell = document.createElement('div');
13+
cell.className = 'cell';
14+
row.appendChild(cell);
15+
}
16+
board.appendChild(row);
17+
}
18+
}
19+
20+
function makeGuess() {
21+
const guessInput = document.getElementById('guessInput');
22+
const guess = guessInput.value.toLowerCase();
23+
guessInput.value = '';
24+
25+
if (guess.length !== 5) {
26+
document.getElementById('message').textContent = 'Please enter a 5-letter word.';
27+
return;
28+
}
29+
30+
if (attempts >= maxAttempts) {
31+
document.getElementById('message').textContent = `Sorry, you've run out of attempts. The word was: ${word}`;
32+
return;
33+
}
34+
35+
const row = document.querySelectorAll('.row')[attempts];
36+
const cells = row.querySelectorAll('.cell');
37+
38+
for (let i = 0; i < 5; i++) {
39+
cells[i].textContent = guess[i];
40+
if (guess[i] === word[i]) {
41+
cells[i].classList.add('correct');
42+
} else if (word.includes(guess[i])) {
43+
cells[i].classList.add('present');
44+
} else {
45+
cells[i].classList.add('absent');
46+
}
47+
}
48+
49+
if (guess === word) {
50+
document.getElementById('message').textContent = 'Congratulations! You guessed the word correctly!';
51+
return;
52+
}
53+
54+
attempts++;
55+
if (attempts === maxAttempts) {
56+
document.getElementById('message').textContent = `Sorry, you've run out of attempts. The word was: ${word}`;
57+
}
58+
}
59+
60+
createBoard();

2024/BeaBergst/styles.css

+28-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,31 @@ body, h1, h2, p, ul, li {
2828
padding: 20px;
2929
text-align: center;
3030
}
31-
31+
#wordle {
32+
font-family: Arial, sans-serif;
33+
display: flex;
34+
flex-direction: column;
35+
align-items: center;
36+
justify-content: center;
37+
height: 100vh;
38+
margin: 0;
39+
background-color: #f0f0f0;
40+
}
41+
42+
#game-container {
43+
text-align: center;
44+
}
45+
46+
#board {
47+
display: grid;
48+
grid-template-columns: repeat(5, 40px);
49+
gap: 10px;
50+
margin-bottom: 20px;
51+
}
52+
53+
.cell {
54+
width: 40px;
55+
height: 40px;
56+
border: 1px solid #ccc;
57+
58+
}

0 commit comments

Comments
 (0)