Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script>
  4. var punt=0;
  5. var valore=0;
  6. function tempo(){
  7. setInterval(random, 300);
  8. }
  9. function random(){
  10. for (i = 1; i < 10; i++) {
  11. document.getElementById(i).src="vuoto.png";
  12. }
  13.  
  14.  
  15. valore = Math.floor((Math.random() * 9) + 1);
  16. document.getElementById(valore).src="acceso.gif";
  17. }
  18.  
  19. function checkt(num){
  20. if(valore==num){
  21. punt++;
  22. console.log(punt);
  23. document.getElementById("scorefinale").innerHTML=punt;
  24. }
  25. }
  26.  
  27. </script>
  28. </head>
  29. <body>
  30. <center>
  31. <table>
  32. <tr>
  33. <tD><img src="vuoto.png" height="100" width="100" id=1 onclick=checkt(1)>
  34. <td><img src="vuoto.png" height="100" width="100" id=2 onclick=checkt(2)>
  35. <td><img src="vuoto.png" height="100" width="100" id=3 onclick=checkt(3)>
  36. <tr>
  37. <tD><img src="vuoto.png" height="100" width="100" id=4 onclick=checkt(4)>
  38. <td><img src="vuoto.png" height="100" width="100" id=5 onclick=checkt(5)>
  39. <td><img src="vuoto.png" height="100" width="100" id=6 onclick=checkt(6)>
  40. <tr>
  41. <tD><img src="vuoto.png" height="100" width="100" id=7 onclick=checkt(7)>
  42. <td><img src="vuoto.png" height="100" width="100" id=8 onclick=checkt(8)>
  43. <td><img src="vuoto.png" height="100" width="100" id=9 onclick=checkt(9)>
  44. </table>
  45. <button onclick=tempo()>Inizio</button><br>
  46. <font id=scorefinale size=10 color=#4286f4>0 </font><font size=10 color=#4286f4> Talpe</font>
  47. </center>
  48.  
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement