Use un codigo para el scrolll de derecha a izquierda jalando data via php
Código PHP:
<link href="STYLO.css" rel="stylesheet" type="text/css">
<?
require_once('control/config.php');
?>
<script language="JavaScript1.2">
var ancho=450
var alto=25
var velocidad=3
var contenido='<?
$ssql=("SELECT * FROM noticias ORDER BY idnoticias desc limit 5");
$result=mysql_query($ssql,$cn);
while ($row=mysql_fetch_array($result)){
echo "<a href=noticia.php?idnot=".$row['idnoticias']." >".$row[titulo]."</a> ";} ?>'
if (document.all)
document.write('<marquee direction="left" scrollAmount='+velocidad+' style="width:'+ancho+';height:'+alto+';" class="style1" >'+contenido+'</marquee>')
function regenerar(){
window.location.reload()
}
function regenerar2(){
if (document.layers){
setTimeout("window.onresize=regenerar",450)
inimarquee()
}
}
function inimarquee(){
document.cmarquee01.document.cmarquee02.document.write(contenido)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}
function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=velocidad
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=alto
scrollit()
}
}
window.onload=regenerar2
</script>
gracias