-
Notifications
You must be signed in to change notification settings - Fork 0
/
MemoryCardGame.html
224 lines (208 loc) · 8.5 KB
/
MemoryCardGame.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!DOCTYPE html>
<html>
<head>
<title>Memory Card Game!</title>
<script src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
</head>
<body style="background-color: #a5f0dc;">
<div id="root"></div>
<script type="text/babel">
const Front = () => {
return(
<img src={'./FrontCard.png'} style={{
height:'100%',
width: '100%',
backfaceVisibility:'hidden',
margin:'0px',
position:'absolute'
}}/>
)
}
const Back = ({animalCard}) => {
return(
<img src={animalCard} style={{
height: '100%',
width: '100%',
backfaceVisibility: 'hidden',
transform: 'rotateY(180deg)',
position: 'absolute'
}}/>
)
}
const Template = ({card, degree, onClick}) => {
let rotable=degree ? '180' : '0'
return(
<div style={{
background:'none',
height:'100px',
width: '75px',
border: 'blue solid 10px',
perspective: '700px',
margin:'auto auto',
boxShadow: '0px 0px 5px rgba(255, 255, 255,0.2)',
transformStyle: 'preserve-3d',
transition: 'transform 1s',
transform: 'rotateY('+rotable+'deg)',
cursor: 'pointer',
position: 'relative'
}}
onClick={onClick}
>
<Back animalCard={card}/>
<Front />
</div>
)
}
const MemoryCards = ({setScore, setMovement}) => {
var cardList = [
'Cards/caballo.png',
'Cards/feneco.png',
'Cards/gato.png',
'Cards/mapache.png',
'Cards/pato.png',
'Cards/perro.png',
'Cards/tucan.png',
'Cards/vaca.png',
'Cards/caballo.png',
'Cards/feneco.png',
'Cards/gato.png',
'Cards/mapache.png',
'Cards/pato.png',
'Cards/perro.png',
'Cards/tucan.png',
'Cards/vaca.png'
]
const [rotar, setRotar] = React.useState(Array(16).fill(false))
const randomizer = (max) => {
return Math.floor(Math.random() * max);
};
const randList = cardList.slice();
randList.sort(() => {
return randomizer(2) - 1;
});
const [match, setMatch] = React.useState([])
const puntaje = (newMatch) => {
console.log(newMatch)
if (newMatch.length > 1) {
setMovement()
if (imagen.current[newMatch[0]] === imagen.current[newMatch[1]]) {
setScore()
}
else {
setTimeout(() => {
setRotar(prevState => {
const newRotar = [...prevState]
newRotar[newMatch[1]] = !newRotar[newMatch[1]]
newRotar[newMatch[0]] = !newRotar[newMatch[0]]
return newRotar
})
},1000)
}
setMatch([])
}
}
const imagen = React.useRef([...randList])
const click = (index) => {
if(rotar[index] !== true) {
setRotar(prevState => {
const newRotar = [...prevState]
newRotar[index] = !newRotar[index]
return newRotar
})
setMatch(prevState => {
const newMatch = [...prevState]
newMatch.push(index)
puntaje(newMatch)
return newMatch
})
}
}
return(
<div style={{
width: '800px',
height:'800px',
margin: 'auto',
display: 'grid',
gridTemplateRows: 'repeat(4, 170px)',
gridTemplateColumns: 'repeat(4, 180px)'
}}> {
imagen.current.map((item, index) => (
<Template key={index} card={item} onClick={() => click(index)} degree={rotar[index]}/>
))
}
</div>
)
}
const Victory = ({con, zIndex}) => {
return(
<div style={{
opacity: con,
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
position: 'absolute',
color: 'white',
backgroundColor: '#000000',
zIndex: zIndex,
fontSize: '50px',
transition: 'opacity 1000ms ease-in-out'
}}>
<p>Felicidades! Completaste el juego!</p>
<button onClick={()=>{location.reload()}}>Jugar otra vez</button>
</div>
)
}
const MemoryCardsGameplay = () => {
const [score,setScore] = React.useState(0)
const [con, setCon] = React.useState('0')
const [zIndex, setZIndex] = React.useState(0)
const [movement, setMovement] = React.useState(0)
const puntuacion = () => {
setScore(prevState => {
if((prevState+1)>=8) {
setCon(() => {setCon('50'), 1000})
setTimeout(() => {setZIndex(2)}, 1000)
setZIndex(2)
}
return prevState + 1
})
}
return(
<div style={{
width: '100%',
height:'100%',
margin:'0px, 0px',
pading:'0px'
}}>
<div style={{
position: 'relative',
zIndex: 3
}}>
<h1 style={{
fontFamily: "Times New Roman",
color: 'black'
}}>Score: {score}</h1>
<h1 style={{
fontFamily: "Times New Roman",
color: 'black',
position:'relative',
zIndex:3
}}>Movimientos: {movement}</h1>
</div>
<div style={{
position: 'relative',
zIndex:1
}}>
<MemoryCards setScore={() => {puntuacion()}} setMovement = {() => setMovement(movement+1)}/>
</div>
<Victory contraste={con} zIndex={zIndex}></Victory>
</div>
)
}
const root = ReactDOM.createRoot(document.getElementById('root'))
root.render(<MemoryCardsGameplay />)
</script>
</body>
</html>