11/09/2006, 19:36
|
| Me alejo de Omelas | | Fecha de Ingreso: mayo-2004 Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años, 8 meses Puntos: 834 | |
Algo así:
Código:
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
function controlar(como){
document.getElementById('pepe').scrollAmount=como;
}
</script>
</head>
<body>
<a href="javascript:controlar(1)">go</a> <a href="javascript:controlar(0)">stop</a><br><br>
<marquee id="pepe" height="80" width="450" scrollamount="1" direction="UP" onmouseover="this.scrollAmount=0" onmouseout="this.scrollAmount=1"><script src="http://www.disegnocentell.com.ar/new/document_rss_js.php"></script></marquee>
</body>
</html>
|