Advertisement
Guest User

Untitled

a guest
Oct 27th, 2011
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3.  
  4. <title>Muestra oculta</title>
  5.  
  6.  
  7. <script language="JavaScript">
  8.  
  9. function mostrardiv()
  10. {
  11.  
  12. div = document.getElementById('flotante');
  13.  
  14. div.style.display = ''
  15.  
  16. }
  17.  
  18. function cerrar()
  19. {
  20.  
  21. div = document.getElementById('flotante');
  22.  
  23. div.style.display='none';
  24.  
  25. }
  26.  
  27.  
  28.  
  29. </script>
  30.  
  31.  
  32. </head>
  33.  
  34. <body>
  35.  
  36. <div id="mostrarDiv"><a href="javascript:mostrardiv();">Mostrar Div</a></div>
  37.  
  38. <div id="flotante" style="display:none; background-color: #CCCCCC; width: 300px; z-index: 10">
  39.         <img src="imagenes/foto_rocio.jpg"> <a href="javascript:cerrar();"> [cerrar]</a>
  40. </div>
  41.  
  42. <div> contenidos varios dlgj lñdkjf glkhjdlkfjghlñkdj fl  </div>
  43.  
  44.  
  45. </body>
  46. </html>
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement