Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/07/2012, 14:34
Avatar de Pablo Ayala
Pablo Ayala
 
Fecha de Ingreso: septiembre-2005
Ubicación: Cancún, México
Mensajes: 231
Antigüedad: 19 años, 1 mes
Puntos: 28
Respuesta: z-index css jquery

Hola... espero te sirva mi ejemplo

Saludos

Código HTML:
Ver original
  1. <!DOCTYPE html>
  2. <html lang="es">
  3. <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
  4.  
  5.     #hola{
  6.         float:left;
  7.         background: #000;
  8.         width: 600px;
  9.         height: 600px;
  10.         position:relative;     
  11.     }
  12.    
  13.     #adios{
  14.         float: left;
  15.         background: red;
  16.         width: 600px;
  17.         height: 600px;
  18.         margin: 100px 0 0 -300px;
  19.         position: relative;
  20.                
  21.     }
  22. </head>
  23.  
  24.  
  25. <div id="hola" ></div>
  26. <div id="adios" ></div>
  27.    
  28. <script>   
  29.         $("#adios").click(function(){
  30.             $(this).css("z-index", -1);
  31.         });
  32.        
  33.         $("#hola").click(function(){
  34.             $("#adios").css("z-index", 0);
  35.            
  36.         });    
  37.     </script>
  38. </body>
  39. </html>
__________________
Atentamente,

Pablo Ayala.
Si vas a responder algo en el foro que sea con amabilidad.