-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathttt.html
81 lines (71 loc) · 1.92 KB
/
ttt.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
}
.board {
display: grid;
grid-template-columns: repeat(3, 100px);
grid-gap: 5px;
}
.cell {
width: 100px;
height: 100px;
text-align: center;
font-size: 36px;
border: 2px solid #333;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Stunning Tic-Tac-Toe</h1>
<div class="board" id="board">
<div class="cell" onclick="makeMove(0,0)"></div>
<div class="cell" onclick="makeMove(0,1)"></div>
<div class="cell" onclick="makeMove(0,2)"></div>
<div class="cell" onclick="makeMove(1,0)"></div>
<div class="cell" onclick="makeMove(1,1)"></div>
<div class="cell" onclick="makeMove(1,2)"></div>
<div class="cell" onclick="makeMove(2,0)"></div>
<div class="cell" onclick="makeMove(2,1)"></div>
<div class="cell" onclick="makeMove(2,2)"></div>
</div>
<p id="status">Player X's turn</p>
<script>
let currentPlayer = 'X';
let board = ['', '', '', '', '', '', '', '', ''];
function makeMove(row, col) {
const index = 3 * row + col;
if (board[index] === '' && !checkWinner()) {
board[index] = currentPlayer;
document.getElementById('board').children[index].textContent = currentPlayer;
currentPlayer = (currentPlayer === 'X') ? 'O' : 'X';
document.getElementById('status').textContent = `Player ${currentPlayer}'s turn`;
checkWinner();
}
}
function checkWinner() {
const winPatterns = [
[0, 1, 2], [3, 4, 5], [6, 7, 8],
[0, 3, 6], [1, 4, 7], [2, 5, 8],
[0, 4, 8], [2, 4, 6]
];
for (const pattern of winPatterns) {
const [a, b, c] = pattern;
if (board[a] && board[a] === board[b] && board[a] === board[c]) {
document.getElementById('status').textContent = `Player ${board[a]} wins!`;
return true;
}
}
if (!board.includes('')) {
document.getElementById('status').textContent = "It's a draw!";
return true;
}
return false;
}
</script>
</body>
</html>