Pagina 1 di 2 1 2 ultimoultimo
Visualizzazione dei risultati da 1 a 10 su 14
  1. #1

    Frasi random con javascript

    Ho trovato questo javascript come da titolo, e vorrei sapere se è possibile e come formattare il testo che deve comparire random.

    <SCRIPT LANGUAGE="Javascript"><!--

    function text() {
    };

    text = new text();
    number = 0;

    // textArray
    text[number++] = "Riga testo 1."
    text[number++] = "Riga testo 2."
    text[number++] = "Riga testo 3."
    text[number++] = "Riga testo 4."
    text[number++] = "Riga testo 5."
    // keep adding items here...

    increment = Math.floor(Math.random() * number);

    document.write(text[increment]);

    //--></SCRIPT>
    Il mio sorriso streccia l'umore di Figaro.

    I can tell you with no ego, this is my finest sword. If on your journey, you should
    encounter God, God will be cut.
    Hattori Hanzo

    vita

  2. #2
    Utente di HTML.it
    Registrato dal
    Dec 2001
    Messaggi
    3,259
    certamente

    al posto di document.write(text[increment]);

    document.write("<span class='testo'>"+text[increment]+"</span>");


    poi ti fai il tuo CSS... altrimenti puoi inserire direttamente i tag html lì...



    PS: avevo sbagliato la concatenazione, scusa

  3. #3
    Grazie mille

    Ahem, un'altra cosa... ...come faccio a decidere dove far comparire il testo?
    Il mio sorriso streccia l'umore di Figaro.

    I can tell you with no ego, this is my finest sword. If on your journey, you should
    encounter God, God will be cut.
    Hattori Hanzo

    vita

  4. #4
    Argh...ahem...ho pravato ma non funziona...sicuramente l'errore è mio, dove sbaglio?
    Il mio sorriso streccia l'umore di Figaro.

    I can tell you with no ego, this is my finest sword. If on your journey, you should
    encounter God, God will be cut.
    Hattori Hanzo

    vita

  5. #5
    Utente di HTML.it
    Registrato dal
    Dec 2001
    Messaggi
    3,259
    <SCRIPT LANGUAGE="Javascript"><!--
    text = new text();
    number = 0;

    // textArray
    text[number++] = "Riga testo 1."
    text[number++] = "Riga testo 2."
    text[number++] = "Riga testo 3."
    text[number++] = "Riga testo 4."
    text[number++] = "Riga testo 5."
    // keep adding items here...

    increment = Math.floor(Math.random() * number);

    document.write(""+text[increment]+"");

    //--></SCRIPT>


    inserisci lo script dove vuoi che esca il testo

  6. #6
    Originariamente inviato da Virginia
    Argh...ahem...ho pravato ma non funziona...sicuramente l'errore è mio, dove sbaglio?
    hai provato a leggere la mia pillola al riguardo?

    ciao

  7. #7
    Provo immediatamente.

    Per la tua pazienza basta un encomio al merito, o mi mandi le coordinate bancarie?
    Il mio sorriso streccia l'umore di Figaro.

    I can tell you with no ego, this is my finest sword. If on your journey, you should
    encounter God, God will be cut.
    Hattori Hanzo

    vita

  8. #8
    Non funziona lo stesso, Dennis... sono senza speranza, lo so...questo è quello che ho aggiunto:
    document.write("<font face="arial">"+text[increment]+"</font>");


    Var, vado immediatamente
    Il mio sorriso streccia l'umore di Figaro.

    I can tell you with no ego, this is my finest sword. If on your journey, you should
    encounter God, God will be cut.
    Hattori Hanzo

    vita

  9. #9
    Utente di HTML.it
    Registrato dal
    Dec 2001
    Messaggi
    3,259
    certo, hai gli apici doppi...
    document.write("<font face=\"arial\">"+text[increment]+"</font>");



    PS: mi accontento di un milioncino di euro...

  10. #10
    Risolto alla perfezione.

    Grazie di cuore, ragazzi. :inchinoprostrata:
    Il mio sorriso streccia l'umore di Figaro.

    I can tell you with no ego, this is my finest sword. If on your journey, you should
    encounter God, God will be cut.
    Hattori Hanzo

    vita

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.