Skip to content

Commit dc3abc7

Browse files
author
Ken C
committed
added instructional pop up
1 parent 92982a6 commit dc3abc7

File tree

3 files changed

+126
-2
lines changed

3 files changed

+126
-2
lines changed

src/App.css

+68-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
transition: background-color 0.3s ease;
3232
background-color: whitesmoke;
3333
color: black
34-
}
34+
}
3535

3636
.square:hover {
3737
background-color: lightskyblue;
@@ -63,4 +63,70 @@ background-image: url("purple-wave.jpg");
6363
background-size: contain;
6464
background-repeat: no-repeat;
6565
background-size: 100%; /* Fills the container completely */
66-
}
66+
}
67+
68+
69+
/* GreetingPopup.css */
70+
71+
/* Popup container to cover the entire screen */
72+
.popup-container {
73+
position: fixed;
74+
top: 0;
75+
left: 0;
76+
width: 100vw; /* Use the entire viewport width */
77+
height: 100vh; /* Full height of the viewport */
78+
background-color: rgba(0, 0, 0, 0.3); /* Dark background with opacity */
79+
display: flex;
80+
justify-content: center;
81+
align-items: center;
82+
z-index: 1000; /* Ensure the popup is on top of other elements */
83+
animation: fadeIn 0.5s; /* Fade-in effect */
84+
padding-left: 30px; /* Left padding */
85+
padding-right: 30px; /* Right padding */
86+
box-sizing: border-box; /* Include padding within the width calculation */
87+
}
88+
89+
/* Popup box */
90+
.popup {
91+
background-color: white;
92+
border-radius: 8px;
93+
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
94+
text-align: center;
95+
position: relative;
96+
animation: fadeIn 0.5s; /* Fade-in effect */
97+
padding: 50px;
98+
width: 100%; /* Let the width of the popup take up the remaining space */
99+
max-width: 500px; /* Limit the maximum width for large screens */
100+
box-sizing: border-box; /* Ensure padding is included in width */
101+
}
102+
103+
/* Text inside the popup */
104+
.greeting-text {
105+
font-size: 18px;
106+
color: #333;
107+
text-align: center;
108+
margin: 0; /* Ensures there is no margin */
109+
padding: 0; /* Ensures there is no padding */
110+
}
111+
112+
/* Close button */
113+
.close-button {
114+
position: absolute;
115+
top: 10px;
116+
right: 10px;
117+
background: none;
118+
border: none;
119+
font-size: 30px;
120+
color: black;
121+
cursor: pointer;
122+
}
123+
124+
/* Fade-in animation */
125+
@keyframes fadeIn {
126+
from {
127+
opacity: 0;
128+
}
129+
to {
130+
opacity: 1;
131+
}
132+
}

src/App.jsx

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import React, { useState } from 'react';
22
import './App.css';
3+
import GreetingPopup from './GreetingsPopUp';
34

45
const calculateWinner = (squares) => {
56
const lines = [
@@ -51,6 +52,8 @@ const App = () => {
5152

5253
return (
5354
<div className="App">
55+
<div>
56+
<GreetingPopup /></div>
5457
<div className="status"><b>{status}</b></div>
5558
<div className="board">
5659
{squares.map((value, index) => (

src/GreetingsPopUp.jsx

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
import React, { useState } from 'react';
2+
3+
const GreetingPopup = () => {
4+
// State to track visibility of the popup
5+
const [isVisible, setIsVisible] = useState(true);
6+
7+
// Handle closing the popup
8+
const handleClose = () => {
9+
setIsVisible(false);
10+
};
11+
12+
// If the popup is visible, render it, otherwise return null
13+
return (
14+
<>
15+
{isVisible && (
16+
<div className="popup-container">
17+
{' '}
18+
{/* Popup container */}
19+
<div className="popup">
20+
{' '}
21+
{/* Greeting text */}
22+
<button onClick={handleClose} className="close-button">
23+
&times; {/* "X" for close */}
24+
</button>
25+
<br />
26+
<h1 style={{color:'black'}}>WELCOME!</h1>
27+
<br />
28+
{/* Popup box */}
29+
<span className="greeting-text">
30+
Welcome to the React Tic Tac Toe App! This is a two-player game
31+
where players take turns clicking on the squares of the board to
32+
place their corresponding "X" or "O". The objective is to be the
33+
first to get three of your marks in a row—whether horizontally,
34+
vertically, or diagonally. If all squares are filled without a
35+
winner, the game results in a tie. As you play, the game
36+
dynamically updates to show each player's moves, and the winner
37+
(or tie) is determined automatically. Once a game ends, you can
38+
start a new round by resetting the board. Enjoy playing and
39+
challenging your opponent in this classic game!
40+
</span>{' '}
41+
<br /><br />
42+
<span className="greeting-text">
43+
When ready click the ""X" in the upper right corner to begin
44+
playing the Tic-Tac-Toe game.
45+
</span>{' '}
46+
<br />
47+
<br />
48+
</div>
49+
</div>
50+
)}
51+
</>
52+
);
53+
};
54+
55+
export default GreetingPopup;

0 commit comments

Comments
 (0)