Algo de razon tienes.
Puede que yo me haya quedado en la epoca de la guerra entre
MSIE y
Netscape, cuando abundaban los codigos para hacer marquesina en el
Netscape. Busque y no encontre mucho.
http://www.dynamicdrive.com/dynamicindex2/crosstick.htm http://www.zestcity.com/e-biz/e-biz-...esentation.htm http://www.dyn-web.com/dhtml/pause-scr/ http://www.news-scroller.com/slide.html
Ycomo me senti culpable te escribi uno. No esta muy prolijo y no se si es lo que te sirve, pero es lo mas que me vas a sacar.
Código:
<HTML><HEAD>
<script>
var miTexto="";
var ancho;
var desp=1;
function inicio(){
miTexto=document.getElementById("texto").innerHTML;
document.getElementById("copia").innerHTML=miTexto;
ancho=document.getElementById("texto").offsetWidth;
setTimeout("mover1()", 100);
}
function mover1(){
document.getElementById("linea").style.left="-"+desp+"px";
desp+=1;
if(desp==ancho){
document.getElementById("linea").style.left="0px";
desp=0
}
window.status=desp+" "+ancho;
setTimeout("mover2()", 1);
}
function mover2(){
setTimeout("mover1()", 1);
}
</script>
<style>
#cont{width:50%; he ight=50px; overflow:hidden; border:3px solid blue}
#linea{margin:10px; position:relative}
</style>
</HEAD>
<BODY onload="inicio()">
<div id=cont>
<h1 id=linea><nobr><span id=texto>
ESTE ES UN TEXTO LARGO QUE SIRVE DE MUESTRA PARA LA MARQUESINA TRUCHA QUE NO DEJA ESPACIO ENTRE
CONTENIDOS. --- </span><span id="copia"> </span></nobr></h1>
</div>
</BODY></HTML>
saludos
furoya