Autori: P. Gehrig and U. Dudli www.24fun.com
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="timerONE=window.setTimeout('monscroll(50)',50);">
<script>
function monscroll(longueur)
{
var letexte=" Webmasterpaolo.com";
var texte=" ";
var i,j;
for(i=0;i<letexte.length;i++)
{
if (texte.length<200)
{
for(j=0;j<longueur;j++)
texte+=" "
texte+=letexte.substring(i,i+1);
}
}
window.status=texte;
longueur--;
if (longueur==0)
{
longueur=50;
var cmd="monscroll("+longueur+")";
timerTwo=window.setTimeout(cmd,5000);
}
else
{
var cmd="monscroll("+longueur+")";
timerTwo=window.setTimeout(cmd,70);
}
}
</script>