Ver Mensaje Individual
  #5 (permalink)  
Antiguo 03/08/2010, 14:15
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 10 meses
Puntos: 1567
Respuesta: efecto rollover / revolver onmouseover con palabras

eltras:

tienes algunos conceptos equivocados
si bien el atributo "title" hace las veces de tooltip, es muy limitado

un tootip básico (hay otros mejores, este es para aplicar a un link) hecho con CSS sería

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>ToolTip</title>
  6.  
  7. <style type="text/css">
  8.  
  9. * {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; }
  10. a:hover {background:#ffffff; text-decoration:none;} /*bg color necesario paraIE6*/
  11. a.tooltip span {display:none; padding:2px 3px; margin-left:8px; width:130px;}
  12. a.tooltip:hover span{display:inline; position:absolute; border:1px solid #cccccc; background:#ffffff; color:#6c6c6c;}
  13.  
  14. </head>
  15. <a href="#" class="tooltip">Texto Link<span><b>Esto</b>es un tooltip<br /><img src="http://www.w3schools.com/images/compatible_ie.gif" alt="" width="30" height="30" /></span></a>.
  16. </body>
  17. </html>

Si quieres cambiar
<a href="link" title="texto de la caja de texto">textovisible</a>
y que no conduza a nada, hazlo por
<a href="#" title="texto de la caja de texto">textovisible</a>
ó simplemente a un marcador
<a name="link" title="texto de la caja de texto">textovisible</a>

Además title es un atributo comun a numerosos tags html.

En cuanto a la transformación, supongo que te la hace el blogger. Tendráis que ver cual es el método para craer código desde el blogger.

Empieza por un manual de HTML y Css básicos

http://www.librosweb.es/

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.