http://es.bigpoint.com/
El script que tengo es este:
Código Javascript:
Ver original
espera=5 //Segundos de espera function noticia(imagen,titulo,texto,enlace){ this.imagen=imagen; this.texto=texto; this.titulo=titulo this.enlace=enlace } function obj(x){ return document.getElementById(x); } function mostrar(a){ obj('cuadro').style.visibility='hidden'; obj("imagen_noticia").src=noticiero[a].imagen; obj("titulo_noticia").innerHTML=noticiero[a].titulo; obj("texto_noticia").innerHTML=noticiero[a].texto; obj("enlace").href=noticiero[a].enlace } b=0; function cambiar(incr){ b=(noticiero.length>b+incr)?b+incr:0; if(b==-1){b=noticiero.length-1;} mostrar(b); } var pepe; function inicio(){ pepe=setInterval("cambiar(1)",espera*1700); }