so yes, this is the game that I think was well done, I admit that I don’t know much about java script and I only do these from a practice point of view, but I would appreciate it if anyone could take a look and try it out and give me some tips on how I could improve. 🙂
html:
<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
</head>
<body onload="draw()">
<style>
td{
width: 95px;
height: 95px;
background-color: aqua;
text-align: center;
}
img
{
width: 50px;
height: auto;
}
</style>
<div style="background-color: bisque; height: 500px; width: 500px; margin-right: auto; margin-left: auto;">
<table id="table">
</table>
</div>
<script src="script3.js"></script>
</body>
</html>
js:
var list = [];
function draw()
{
list = [];
let table = document.getElementById("table");
let cells = 25;
let text = "<tr>"
for (let i = 0; i < cells; i++)
{
list.push(0);
if (i%5 == 0) {text += "<tr></tr>"}
text += `<td onclick = "c(this)" id = "${i}"><img src = "vakondos feladat/Házi feladatok/turas.png"></td>`;
}
text += "</tr>"
table.innerHTML = text;
placed();
}
function c(object)
{
console.log(list)
if (list[object.id] == 1) {
console.log("+1")
document.getElementById(object.id).innerHTML = `<img src = "vakondos feladat/Házi feladatok/turas.png"></img>`;
list[object.id] = 0;
}
}
function placed()
{
let placed = 0;
while (placed < 10) {
let rand = Math.floor((Math.random()*24));
if (list[rand] == 0)
{
list[rand] = 1;
placed++
}
document.getElementById(rand).innerHTML = `<img src = "vakondos feladat/Házi feladatok/vakond.png"></img>`
}
console.log(placed);
out();
}
function out()
{
setInterval(() => {
location.reload()
}, 3300);
}