Foros del Web » Creando para Internet » HTML »

texto desplazandose

Estas en el tema de texto desplazandose en el foro de HTML en Foros del Web. como puedo sacar un texto desplazandose hacia arriba <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" ...
  #1 (permalink)  
Antiguo 21/08/2002, 00:12
 
Fecha de Ingreso: junio-2002
Mensajes: 19
Antigüedad: 21 años, 9 meses
Puntos: 0
texto desplazandose

como puedo sacar un texto desplazandose hacia arriba <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3"> <IMG SRC="images/futbol.gif" WIDTH="15" HEIGHT="15" HSPACE="3">
  #2 (permalink)  
Antiguo 21/08/2002, 01:19
 
Fecha de Ingreso: agosto-2002
Ubicación: En frente de un PC blanco muu grande
Mensajes: 183
Antigüedad: 21 años, 8 meses
Puntos: 0
Re: texto desplazandose

puedes hacerlo con html dinámico, creando una capa y cada vez la vas moviendo hacia arriba.
  #3 (permalink)  
Antiguo 21/08/2002, 16:36
Usuario no validado
 
Fecha de Ingreso: abril-2001
Ubicación: Villa Patolina
Mensajes: 189
Antigüedad: 23 años
Puntos: 0
Re: texto desplazandose

Hola amigo:

Tal vez te refieres a un scroll de noticias, en ese caso entra al sitio que te doy y busca donde diga Scroll de noticias. Copias ese codigo y tienes lo que quieres<a href='ir.asp?http://construyetuweb.netfirms.com' target='_blank'>http://construyetuweb.netfirms.com...</a>

<p><embed width="300" height="60" src="http://construyetuweb.netfirms.com/300x60laguia.swf"></p>
  #4 (permalink)  
Antiguo 21/08/2002, 17:39
 
Fecha de Ingreso: enero-2002
Mensajes: 545
Antigüedad: 22 años, 3 meses
Puntos: 0
Re: texto desplazandose

Yo lo haria con el Scroll como dice Palmiro. Es bastante facil de hacer.


<p align="center"><a href="http://www.mundopesca.cjb.net"><img border="0" src="http://usuarios.lycos.es/criminologia/antinazis.gif" width="65" height="81"></a></p>
  #5 (permalink)  
Antiguo 21/08/2002, 18:07
 
Fecha de Ingreso: noviembre-2001
Mensajes: 73
Antigüedad: 22 años, 5 meses
Puntos: 0
Re: texto desplazandose

POR FAVOR ESTOY CON LA MISMA NECESIDAD, COMO ES ESO DEL HTML DINAMICO , COMO INTRODUZCO UN SCROLL EN UNA PARTE DE LA PÁGINA ??, TAMBIEN DESEO MOSTRAR EN UNA PARTE DE LA PAGINA TEXTO QUE SE PUEDA DESPLAZAR CON UN SCROL PERO QUE NO SE MUEVA EL RESTO DE LA PÁGINA.
GRACIAS ANTICIPADAS

HERNAN
  #6 (permalink)  
Antiguo 21/08/2002, 18:10
 
Fecha de Ingreso: enero-2002
Mensajes: 545
Antigüedad: 22 años, 3 meses
Puntos: 0
Re: texto desplazandose

Es muy facil copia este código en la zona que quieras que se mueva el texto:


&lt;!-- Copiar este código dentro del tag BODY --&gt;

&lt;script language=&quot;JavaScript1.2&quot;&gt;

// ancho
var marqueewidth=150
// alto
var marqueeheight=80
// velocidad
var speed=1
// contenido
var marqueecontents='&lt;font face=&quot;Arial&quot;&gt;&lt;small&gt;En el depósito de JavaScripts podrás encontrar aquellos códigos solicitados por los usuarios de los &lt;a href=&quot;http//www.forosdelweb.com/&quot;&gt;Foros del Web&lt;/a&gt;.&lt;p&gt;&amp;nbsp;&lt;/p&gt;Si buscás otro script visitá la sección &lt;a href=&quot;index.htm&quot;&gt;Depósito de JavaScripts!&lt;/small&gt;&lt;/a&gt;&lt;/font&gt;'

if (document.all)
document.write('&lt;marquee direction=&quot;up&quot; scrollAmount='+speed+' style=&quot;width:'+marqueewidth+';height:'+marque eheight+'&quot;&gt;'+marqueecontents+'&lt;/marquee&gt;')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout(&quot;window.onresize=regenerate&quot;, 450)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.w rite(marqueecontents)
document.cmarquee01.document.cmarquee02.document.c lose()
thelength=document.cmarquee01.document.cmarquee02. document.height
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.top&gt;=t helength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout(&quot;scrollit()&quot;,100)
}
else{
document.cmarquee01.document.cmarquee02.top=marque eheight
scrollit()
}
}

window.onload=regenerate2
&lt;/script&gt;








<p align="center"><a href="http://www.mundopesca.cjb.net"><img border="0" src="http://usuarios.lycos.es/criminologia/antinazis.gif" width="65" height="81"></a></p>
  #7 (permalink)  
Antiguo 21/08/2002, 18:23
 
Fecha de Ingreso: noviembre-2001
Mensajes: 73
Antigüedad: 22 años, 5 meses
Puntos: 0
Re: texto desplazandose

GRACIAS MUNDOPESCA, (QUE VELOZ).. LO APLICARE, OTRA PREGUNTA: LA LLAMADA LA PUEDO HACER DESDE UNA CELDA EN UNA TABLA? (DISCULPA SI LA PREGUNTA ES INGENUA)
  #8 (permalink)  
Antiguo 22/08/2002, 16:40
Usuario no validado
 
Fecha de Ingreso: abril-2001
Ubicación: Villa Patolina
Mensajes: 189
Antigüedad: 23 años
Puntos: 0
Re: texto desplazandose

Hola amigo:

No hay porblema en llamar este Script desde una celda de una tabla. Debes saber que casi siempre las celdas de las tablas se comportan exactamente igual que las tablas, salvo en raras excepciones.

Buena suerte.



<p><embed width="300" height="60" src="http://construyetuweb.netfirms.com/300x60laguia.swf"></p>
  #9 (permalink)  
Antiguo 22/08/2002, 16:59
 
Fecha de Ingreso: enero-2002
Mensajes: 545
Antigüedad: 22 años, 3 meses
Puntos: 0
Re: texto desplazandose

HernanT este Javascript lo puedes colocar en una celda o donde quieras es totalmente manejable. Si tienes algun problema con el solo tienes que decirmelo que te ayudare a solucionarlo. Salu2


<p align="center"><a href="http://www.mundopesca.cjb.net"><img border="0" src="http://usuarios.lycos.es/criminologia/antinazis.gif" width="65" height="81"></a></p>
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta

SíEste tema le ha gustado a 1 personas




La zona horaria es GMT -6. Ahora son las 00:53.