BARRA DI STATO LETTERA PER LETTERA VELOCE

Autori: P. Gehrig and U. Dudli www.24fun.com

PROVA LO SCRIPT

RITORNA ALLA PAGINA DELLE JAVASCRIPT

RITORNA ALLA PAGINA EFFETTO TESTO SULLA BARRA DI STATO

utenti connessi

Lo script da inserire in html

<SCRIPT>
<!-- // Copyright (c) 1999 P. Gehrig and U. Dudli// If you add this script to a script-library 
// you have to add a link to www.24fun.ch. 
var timer
function initiate() {
mytext1.Rotate(0,0,10)
timer=setTimeout("initiate()",20)
}
// -->
</SCRIPT>
<body onLoad="start()" ">
<center>
<p> <br>
<font size=-2 face="Arial,helvetica"></font></a><font size=-2 face="Arial,helvetica"> 
</a></font> 
</p>
<p></p>
<p> 
<script>

<!-- Hiding

var letters= new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9","A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z","a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z","!","@","#","$","%","^","&","*","(",")","_","-","+","=","<",">","/","?","®","©")
var smessage=""
var message= new Array();
var msg=0;


message[0]='benvenuti nel sito Webmasterpaolo.com'
message[1]='ho collezionato centinaia di javascript e applet java'
message[2]='le migliori della rete come questa della barra di stato'
message[3]='di P. Gehrig and U. Dudli ******** visitateli al sito www.24fun.com ********'
function start(){
for (y=0; y<message[msg].length; y++){
for (x=0; x<20; x++){
rnum=Math.random();
rnum*=letters.length-1
rnum=Math.round(rnum)
window.status=smessage+letters[rnum]
for (del=0; del<20; del++){}
}
smessage+=message[msg].substring(y,y+1)
window.status=smessage;
}
window.setTimeout('clrdspl()',2000);
}

function clrdspl(){
smessage="";
window.status="";
if (msg<message.length-1){
msg++;
start();
}
else{
msg=0;
window.setTimeout('start()',1000)
}
}

// Done Hiding -->

</script>