Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/02/2011, 14:48
davidbrepe
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: ayuda crear mensaje foro principal

ahi te va un bonito ejemplo ;)
Código HTML:
Ver original
  1. <style type='text/css'>
  2.  
  3. .thumbnail{
  4. position: relative;
  5. z-index: 0;
  6. }
  7.  
  8. .thumbnail:hover{
  9. background-color: transparent;
  10. z-index: 50;
  11. }
  12.  
  13. .thumbnail span{ /*CSS for enlarged image*/
  14. position: absolute;
  15. background-color: black;
  16. padding: 5px;
  17. left: -100px;
  18. border: 1px dashed gray;
  19. visibility: hidden;
  20. color: #FFFF00;
  21. text-decoration: none;
  22. }
  23.  
  24. .thumbnail span img{ /*CSS for enlarged image*/
  25. border-width: 0;
  26. padding: 2px;
  27. }
  28.  
  29. .thumbnail:hover span{ /*CSS for enlarged image on hover*/
  30. visibility: visible;
  31. top: 0;
  32. left: 10px; /*position where enlarged image should offset horizontally */
  33. }
  34.  
  35. </head>
  36.   <a class="thumbnail" href="#thumb">
  37. <img src="http://img74.imageshack.us/img74/7974/inseguridadji1.jpg" width="100px" height="100px" border="0" />
  38. Texto o palabra que quieras que aparezca en la imagen</span>
  39. </a>
  40.  
  41.  
  42. </body>
  43. </html>