Es muy liviana y utiliza CSS para crear un fondo con imágenes así que es bastante sencillo reemplazarlas por imágenes personales sin necesidad de modificar códigos (las que trae por defecto son aptas para sitios con fondos claros):
<script type="text/javascript" src="URL_unitip.js"></script>
<script type='text/javascript'>
//<![CDATA[
... aqui pegamos el contenido del archivo ...
//]]>
</script>
<style type='text/css'>
#unitip {
display: none;
position: absolute;
top: -1000px;
z-index: 1000;
/* podemos establece la fuente y el color de los textos */
color: #234;
font-family: Tahoma;
font-size: 11px;
}
#unitippoint, #unitipmid, #unitipcap {
display: block;
left: 0px;
position: relative;
top: 0px;
width: 145px;
}
#unitippoint {
background: url(URL_tippoint.png) no-repeat;
height: 19px;
overflow: hidden;
}
#unitipmid {
background: url(URL_tipmid.png) repeat;
height: auto;
padding: 5px 15px;
width: 115px;
}
#unitipcap {
background: url(URL_tipcap.png) no-repeat;
height: 7px;
overflow: hidden;
}
</style>
El mismo script es configurable. Así, por defecto, se puede aplicar a cualquier etiqueta de enlace (A) o imagen (IMG) pero, podemos editar el script y cambiar eso. El original dice así:
var uniTipTag = "a,img"; //Which tag do you want to uniTip-ize? Keep it lowercase. No spaces around commas.//
var uniTipTag = "a,img,p,span";
var uniTipX = 0; // X offset from cursor//
var uniTipY = 15; // Y offset from cursor//
<a class="tip" title="Lo que veremos en el tooltip" href="una_URL"> ENLACE </a>
var uniTipClass = "tip";
<a class="tip" title="la primera línea del tooltip ...<br/>y la segunda línea del tooltip ..." href="una_URL"> ENLACE </a>
0 comentarios:
Publicar un comentario