Al site de vodafone he vist aquest efecte en la barra d'abaix i l'he trobat molt 'xulo'. He agafat el codi de l'script, l'he posat en el body d'un htm en blanc i funciona!!!
Poso el codi per si algú més vol fer proves. Espero que us sigui útil.
<!-- STATUSBAR SCROLL -->
<SCRIPT>
var current = 0
var x = 0
var speed = 60
var speed2 = 2000
var cont = 0
function initArray(n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i] = ' '
}
}
typ = new initArray(5)
typ[0]="*http://www.vodafone.es - Toda la información sobre Vodafone España en Internet...";
typ[1]="*... Vodafone live! con 3G, descubre la Videollamada, la Descarga de Música, la TV, los Videojuegos, y mucho más...*";
typ[2]="*... Si tienes Puntos, canjéalos y estrena móvil...*";
typ[3]="*... Las mejores ofertas para su Empresa...*";
typ[4]="*... Date de alta en Mi Vodafone y podrás gestionar todos tus servicios desde Internet...*";
function typewrite() {
var m = typ[current]
window.status = m.substring(0, x++) + "*"
if (x >= m.length + 1 && cont>(speed2/speed)) {
cont = 0
x = 0
current++
if (current > typ.length - 1) {
current = 0
}
setTimeout("typewrite()", speed)
}
else if(x >= m.length + 1 && cont<=(speed2/speed)) {
cont++
setTimeout("typewrite()", speed)
}
else {
setTimeout("typewrite()", speed)
}
}
typewrite()
</SCRIPT>
<!-- FIN STATUSBAR SCROLL -->