Foros del Web » Programando para Internet » Javascript »

Menú deslizable

Estas en el tema de Menú deslizable en el foro de Javascript en Foros del Web. Buenas: Quiero hacer un menú que, si bajas por la página web, el menú te siga, baje contigo, al estilo de <a href='ir.asp?http://www.paistortuga.com/index2.html' target='_blank'>http://www.paistortuga.com/index2.html...</a>...
  #1 (permalink)  
Antiguo 30/05/2002, 12:31
 
Fecha de Ingreso: diciembre-2001
Ubicación: Bilbao
Mensajes: 182
Antigüedad: 22 años, 4 meses
Puntos: 0
Menú deslizable

Buenas:

Quiero hacer un menú que, si bajas por la página web, el menú te siga, baje contigo, al estilo de <a href='ir.asp?http://www.paistortuga.com/index2.html' target='_blank'>http://www.paistortuga.com/index2.html...</a>

  #2 (permalink)  
Antiguo 30/05/2002, 13:34
Avatar de .
.
 
Fecha de Ingreso: mayo-2002
Ubicación: Tampico
Mensajes: 906
Antigüedad: 22 años
Puntos: 1
Re: Menú deslizable

hola pitxulin espero que te sirva este código que acabo de hacer, el contenido del menu lo modificas a tus necesidades.
Checalo y me cuentas.

&lt;html&gt;
&lt;head&gt;
&lt;!-- EMPIEZA FUNCION DEL MENU --&gt;
&lt;script language=javascript&gt;
function setVariables() {
if (navigator.appName == &quot;Netscape&quot;) {
v=&quot;.top=&quot;;
dS=&quot;document.&quot;;
sD=&quot;&quot;;
y=&quot;window.pageYOffset&quot;;
}
else {
v=&quot;.pixelTop=&quot;;
dS=&quot;&quot;;
sD=&quot;.style&quot;;
y=&quot;document.body.scrollTop&quot;;
}
}
function checkLocation() {
object=&quot;object1&quot;;
yy=eval(y);
eval(dS+object+sD+v+yy);
setTimeout(&quot;checkLocation()&quot;,10);
}
&lt;/script&gt;
&lt;!-- TERMINA FUNCION DEL MENU --&gt;
&lt;/head&gt;

&lt;body OnLoad=&quot;setVariables();checkLocation();&quot; bgcolor=000000&gt;

&lt;table border=0 width=100% height=200%&gt;
&lt;tr&gt;&lt;td&gt;
&lt;!-- AQUI ESTARA EL CONTENIDO DEL MENU --&gt;
&lt;div id=&quot;object1&quot; style=&quot;position:absolute; visibility:show; left:15px; top:0px; z-index:2&quot;&gt;
&lt;font size=7 color=red face=arial&gt;Aqui estara el menu&lt;/font&gt;
&lt;/div&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;


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




La zona horaria es GMT -6. Ahora son las 12:58.