Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/01/2004, 03:05
dover
 
Fecha de Ingreso: septiembre-2003
Ubicación: Roma e Firenze
Mensajes: 68
Antigüedad: 20 años, 7 meses
Puntos: 1
Algo asì?

<html>
<head>
<script language="JavaScript">
<!--

var scrtxt="Scritta scorrevole";
var lentxt=scrtxt.length;
var width=100;
var pos=1-width;

function scorrevole() {
pos++;
var scroller="";
if (pos==lentxt) {
pos=1-width;
}
if (pos<0) {
for (var i=1; i<=Math.abs(pos); i++) {
scroller=scroller+" ";}
scroller=scroller+scrtxt.substring(0,width-i+1);
}
else {
scroller=scroller+scrtxt.substring(pos,width+pos);
}
window.status = scroller;
setTimeout("scorrevole()",170);
}
//-->
</script>
</head>
<title></title>
<body>
<table width=100% height=100%>
<a href="#" onmouseOver="scorrevole()">Visualizza la scritta</a>
</td></tr></table>
</body>
</html>


Ciao,
dover