Browse Source

Funktion erstellt um Stein zu Setzen ins Spielfeld

main
Raphael Elström 2 years ago
parent
commit
e76c8bc0e5
  1. 2
      vier_gewinnt/CSS/style.css
  2. 3
      vier_gewinnt/JS/steinSetzen.js
  3. 4
      vier_gewinnt/vierGewinnt.html

2
vier_gewinnt/CSS/style.css

@ -18,5 +18,5 @@ td{
} }
td:hover{ td:hover{
background-color: aliceblue;
background-color: rgb(80, 80, 80);
} }

3
vier_gewinnt/JS/steinSetzen.js

@ -0,0 +1,3 @@
function setzeStein(reihe, spalte) {
document.getElementById(reihe + "/" + spalte).style.backgroundColor= "red";
}

4
vier_gewinnt/vierGewinnt.html

@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./CSS/style.css"> <link rel="stylesheet" href="./CSS/style.css">
<script src="/JS/vierGewint.js"></script>
<script src="./JS/steinSetzen.js"></script>
<title>Vier Gewinnt</title> <title>Vier Gewinnt</title>
</head> </head>
<body> <body>
@ -59,7 +59,7 @@
<td></td> <td></td>
</tr> </tr>
<tr> <tr>
<td></td>
<td id="1/1" onclick="setzeStein(1,1);"></td>
<td></td> <td></td>
<td></td> <td></td>
<td></td> <td></td>

Loading…
Cancel
Save