Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/02/2011, 21:07
Avatar de Perr0
Perr0
 
Fecha de Ingreso: mayo-2005
Ubicación: Santiago de Chile, Chile
Mensajes: 676
Antigüedad: 19 años, 5 meses
Puntos: 79
Respuesta: Boton rollover

hola gulys, quizá hay muchas formas pero aquí va una idea.

en cada pagina coloca un input "hidden", uno cada nombre:
- <input type="hidden" name="paginaquetoy" value="Inicio">
- <input type="hidden" name="paginaquetoy" value="Servicios">
- <input type="hidden" name="paginaquetoy" value="Contacto">

ademas a cada boton le das como name cada uno de los valores, algo asi:
<input type="button" name="Inicio" >
<input type="button" name="Servicios" >
<input type="button" name="Contacto" >

no inclui los eventos onmouseover y onmouseout, tu se los agregas:

lo otro es que te hagas un js asi, llamado "botones.js"

Código Javascript:
Ver original
  1. window.onload=function(){
  2. bot1=document.getElementsByName("Inicio")[0];
  3. bot2=document.getElementsByName("Servicios")[0];
  4. bot3=document.getElementsByName("Contacto")[0];
  5. bot1.onmouseover=bot2.onmouseover=bot3.onmouseover="this.style.color='#ff6633'";
  6. bot1.onmouseout=bot2.onmouseout=bot3.onmouseout="this.style.color='blue'";
  7. bot1.style.color=bot2.style.color=bot3.style.color="blue";
  8. bot1.onclick=function(){location.href='Inicio.htm'};
  9. bot2.onclick=function(){location.href='Servicios.htm'};
  10. bot3.onclick=function(){location.href='Contacto.htm'};
  11. indicador=document.getElementsByName("paginaquetoy")[0];
  12. boton=document.getElementsByName(indicador.value)[0];
  13. boton.style.color="#ff6633";
  14. boton.onmouseover=null;
  15. boton.onmouseout=null;
  16. boton.onclick=null;
  17. }

lo cargues en todas las paginas y en cada pagina coloque el correspondiente hidden, algo asi

pagina Inicio
Código HTML:
Ver original
  1. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  2. <title>Prueba</title>
  3. <script src="botones.js" type="text/javascript"></script>
  4. </head>
  5.  
  6. <input type="hidden" name="paginaquetoy" value="Inicio">
  7. <h1>Inicio</h1>
  8. <input type="submit" name="Inicio" value="Inicio" />
  9. <input type="submit" name="Servicios" value="Servicios" />
  10. <input type="submit" name="Contacto" value="Contacto" />
  11. </body>
  12. </html>

pagina Servicios
Código HTML:
Ver original
  1. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  2. <title>Prueba</title>
  3. <script src="botones.js" type="text/javascript"></script>
  4. </head>
  5.  
  6. <input type="hidden" name="paginaquetoy" value="Servicios">
  7. <h1>Servicios</h1>
  8. <input type="submit" name="Inicio" value="Inicio" />
  9. <input type="submit" name="Servicios" value="Servicios" />
  10. <input type="submit" name="Contacto" value="Contacto" />
  11. </body>
  12. </html>

pagina Contacto
Código HTML:
Ver original
  1. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  2. <title>Prueba</title>
  3. <script src="botones.js" type="text/javascript"></script>
  4. </head>
  5.  
  6. <input type="hidden" name="paginaquetoy" value="Contacto">
  7. <h1>Contacto</h1>
  8. <input type="submit" name="Inicio" value="Inicio" />
  9. <input type="submit" name="Servicios" value="Servicios" />
  10. <input type="submit" name="Contacto" value="Contacto" />
  11. </body>
  12. </html>

pruebalos

salu2
__________________
Numerador Mp3 en Access =)
http://www.mediafire.com/download/r9...pdw/mp3(2).zip