Visualizzazione dei risultati da 1 a 4 su 4
  1. #1

    Allineamento testo-javascript

    Mi scuso subito se la domanda può essere molto banale ma ho provato veramente a fare di tutto senza nessun risultato.
    Io ho questa scritta inserita in un javascript e vorrei metterle più in lato possibile. Ho già provato con i css e con la normale proprietà align ma non sono riuscito a fare niente.
    La pagina è questa:
    http://daffuzfridrick.altervista.org.../parteinf.html


    Grazie ciao

  2. #2
    Moderatore di JavaScript L'avatar di br1
    Registrato dal
    Jul 1999
    Messaggi
    19,998
    codice:
    <html>
    <head>
    <style type="text/css">
    h1 {text-align:center}
    </style>
    <title></title>
    <h1 align="center"><script
    language="JavaScript">
    <!-- Hide the script from old browsers --
    
    function MakeArray(n){
       this.length=n;
       for(var i=1; i<=n; i++) this[i]=i-1;
       return this
    }
    
    hex=new MakeArray(16);
    hex[11]="A"; hex[12]="B"; hex[13]="C"; hex[14]="D"; hex[15]="E"; hex[16]="F";
    
    function ToHex(x){              // Changes a int to hex (in the range 0 to 255)
       var high=x/16;
       var s=high+"";               //1
       s=s.substring(0,2);          //2 the combination of these are the same as the trunc function
       high=parseInt(s,10);         //3
       var left=hex[high+1];        // left part of the hex-value
       var low=x-high*16;           // calculate the rest of the values
       s=low+"";                    //1
       s=s.substring(0,2);          //2 the combination of these are the same as the trunc function
       low=parseInt(s,10);          //3
       var right=hex[low+1];        // right part of the hex-value
       var string=left+""+right;    // add the high and low together
       return string;
    }
    
    function rainbow(text){
       text=text.substring(3,text.length-4);        // gets rid of the HTML-comment-tags
       color_d1=255;                                // any value in 'begin' 0 to 255
       mul=color_d1/text.length;
       for(i=0;i < text.length;i++){
          color_d1=255*Math.sin(i/(text.length/3)); // some other things you can try >> "=255-mul*i" to fade out, "=mul*i" to fade in, or try "255*Math.sin(i/(text.length/3))"
          color_h1=ToHex(color_d1);
          color_d2=mul*i;
          color_h2=ToHex(color_d2);
          document.write("<FONT COLOR='#FF"+color_h1+color_h2+"'>"+text.substring(i,i+1)+'</FONT>');
       }
    }
    
    // --End Hiding Here -->
    
    
    
    </script></font></h1>
    </head><body bgcolor="black">
    <h1 align="top"><font size="5" face="Verdana">
    
    
    
    
    
    
    
    <script>
    
    <!--
    
      {rainbow("--> Vi auguriamo una buona visita al sito! <!--");} 
    
    //-->
    
    </script> </h1>
    
    </head>
    <body bgcolor="black">
    
    </body>
    </html>
    togli le parti in rosso e aggiungi le blu

    ciao
    Il guaio per i poveri computers e' che sono gli uomini a comandarli.

    Attenzione ai titoli delle discussioni: (ri)leggete il regolamento
    Consultate la discussione in rilievo: script / discussioni utili
    Usate la funzione di Ricerca del Forum

  3. #3
    Ok funziona benissimo grazie 1000.

    PS: Cos'è il tag strong?

  4. #4
    Moderatore di JavaScript L'avatar di br1
    Registrato dal
    Jul 1999
    Messaggi
    19,998
    Il guaio per i poveri computers e' che sono gli uomini a comandarli.

    Attenzione ai titoli delle discussioni: (ri)leggete il regolamento
    Consultate la discussione in rilievo: script / discussioni utili
    Usate la funzione di Ricerca del Forum

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.