se vuoi vedere un'altro testo clicca qui che ricarica la pagina
Autori: http://www.cgiscript.net/scripts.htm , modified and explained from www.webmasterpaolo.com
RITORNA ALLA PAGINA DELLE JAVASCRIPT
RITORNA ALLA PAGINA DEGLI EFFETTI SUL TESTO
Lo script da inserire in html
<SCRIPT LANGUAGE="Javascript"><!--
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************
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>