Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/04/2009, 19:28
Avatar de buzu
buzu
 
Fecha de Ingreso: octubre-2006
Ubicación: San Francisco, CA
Mensajes: 2.168
Antigüedad: 18 años, 2 meses
Puntos: 122
Respuesta: Caja que aparece y desaparece

Hola, como anda to'?

Mira te dejo este ejemplo (intencionalmente) mal hecho que acabo de hacer. No para que copies y pegues, sino para que te des una idea.

Código javascript:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2.         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
  4. <head>
  5.     <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6.     <title>CaliZzZz</title>
  7.     <script type="text/javascript">
  8.         function init(){
  9.             c1 = document.getElementById('capa1');
  10.             c2 = document.getElementById('capa2');
  11.            
  12.             c1.style.display = c2.style.display = 'none';
  13.         }
  14.         oldCapa = null;
  15.         function cambio(capa){
  16.             if(oldCapa != null){
  17.                 document.getElementById(oldCapa).style.display = 'none';
  18.             }
  19.             document.getElementById(capa).style.display = 'block';
  20.             oldCapa = capa;
  21.         }
  22.        
  23.         window.onload = init;
  24.     </script>
  25. </head>
  26. <body>
  27.    <ul>
  28.         <li>
  29.             <a href="#" onclick="cambio('capa1')">Cursos de Programacion</a>
  30.         </li>
  31.         <li>
  32.             <a href="#" onclick="cambio('capa2')">Cursos de Ofimatica</a>
  33.         </li>
  34.     </ul>
  35.     <div id="capa1">
  36.         kljlsdaf
  37.     </div>
  38.     <div id="capa2">
  39.         ljklsajfl@@@@@@22222222
  40.     </div>
  41. </body>
  42. </html>
__________________
twitter: @imbuzu