Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/08/2002, 20:27
dix10
 
Fecha de Ingreso: febrero-2002
Mensajes: 115
Antigüedad: 22 años, 3 meses
Puntos: 1
Re: Problema con scroll o algo asi

Perdon, me lo lvide..igual voy a revisar el link..gracias

<script>
function abajo()
{
contenido.style.top = contenido.style.pixelTop + 5
anima = setTimeout("abajo()",50)
}
function arriba()
{
contenido.style.top = contenido.style.pixelTop - 5
anima = setTimeout("arriba()",50)
}
function para()
{
clearTimeout(anima)
}
</script>