Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
J-Trissone  - sorgente.txt

sorgente.txt

Caricato da: Inconcepibile
Scarica il programma completo

  1. <doctype html public="//w3c//dtd html 4.01//it">
  2. <htlm>
  3.   <head>
  4.     <title>trissone Copyright NIW 2011</title>
  5.     <style type="text/css">
  6.       input {font-size:25px; width:50px; height:50px;}
  7.     </style>
  8.     <!-- richiamo il file "tris.js" che ha tutte le funzioni del tris -->
  9.     <script type="text/javascript" src="tris.js"></script>
  10.   </head>
  11.   <body>
  12.     <!-- creo la tabella cha farà da griglia al tris -->
  13.     <table
  14.       style="absolute; left:20px; top:30px;"
  15.       align="center"
  16.       bgcolor="000000"
  17.       cellpadding="1">
  18.       <TR>
  19.         <TH bgcolor="00aaee" colspan="3">TRISSONE</TH>
  20.       <TR>
  21.         <TD>
  22.           <input type="button" id="button1" onclick="print_move(1)">
  23.         <TD>
  24.           <input type="button" id="button2" onclick="print_move(2)">
  25.         <TD>
  26.           <input type="button" id="button3" onclick="print_move(3)">
  27.       <TR>
  28.         <TD>
  29.           <input type="button" id="button4" onclick="print_move(4)">
  30.         <TD>
  31.           <input type="button" id="button5" onclick="print_move(5)">
  32.         <TD>
  33.           <input type="button" id="button6" onclick="print_move(6)">
  34.       <TR>
  35.         <TD>
  36.           <input type="button" id="button7" onclick="print_move(7)">
  37.         <TD>
  38.           <input type="button" id="button8" onclick="print_move(8)">
  39.         <TD>
  40.           <input type="button" id="button9" onclick="print_move(9)">
  41.     </table><br>
  42.     <!-- aggiungo il textbox dove verr+ visualizzato il risultato ed il bottone per ricominciare -->
  43.     <P align="center">
  44.       <input
  45.        type="text"
  46.        id="testo"
  47.        value=""
  48.        style="width:300px; height:38"
  49.        readonly="true">
  50.        <br><br>
  51.       <input
  52.        type="button"
  53.        id="ri"
  54.        value="Ricomincia?"
  55.        style="width:200px; height:38"
  56.        onclick="ripeti()">
  57.        <br>
  58.     </P>
  59.   </body>
  60. </html>