Simple Tooltips con jQuery y CSS

Simple Tooltips con jQuery y CSS

¿Cómo implementar un simple tooltips con jQuery y CSS? Este tutorial es muy sencillo, ideal para el que está dando sus primeros pasos con jQuery, además  el resultado final es muy vistoso, la idea es mostrar un parte de una imagen permanentemente, al pasar le puntero de mouse sobre ésta, se vea la imagen completa en un tooltip.

Implementación

Enlazamos la biblioteca jQuery y agregamos el Javascript que lo implementa:

<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js">
</script>
<script type="text/javascript">
$(document).ready(function() {
//Tooltips
$(".tip_trigger").hover(function(){
$(this).find('.tip').show(); //Show tooltip
}, function() {
$(this).find('.tip').hide(); //Hide tooltip
}).mousemove(function(e) {
var mousex = e.pageX + 20; //Get X coodrinates
var mousey = e.pageY + 20; //Get Y coordinates
var tipWidth = $(this).find('.tip').width(); //Find width of tooltip
var tipHeight = $(this).find('.tip').height(); //Find height of tooltip
//Distance of element from the right edge of viewport
var tipVisX = $(window).width() - (mousex + tipWidth);
var tipVisY = $(window).height() - (mousey + tipHeight);
if ( tipVisX < 20 ) { //If tooltip exceeds the X coordinate of viewport
mousex = e.pageX - tipWidth - 20;
$(this).find('.tip').css({  top: mousey, left: mousex });
} if ( tipVisY < 20 ) { //If tooltip exceeds the Y coordinate of viewport
mousey = e.pageY - tipHeight - 20;
$(this).find('.tip').css({  top: mousey, left: mousex });
} else {
$(this).find('.tip').css({  top: mousey, left: mousex });
}
});
});
</script>

Luego creamos la estructura HTML que será el contenedor del tooltip:

<div class="container">
<h1><span>Simple Tooltips</span> w/ CSS &amp; jQuery
<small>Tutorial by Soh Tanaka</small></h1>
<a href="http://www.designbombs.com/design-firm/struck-axiom/"
class="tip_trigger"
style="float: left; margin: 5px 20px 20px 0;
padding: 10px; border: 1px dashed #ddd;">
<img src="http://www.designbombs.com/wp-content/themes/
DesignBombs/images/gallery/struckaxiom_thumb.gif" alt=""/>
<span class="tip"><img src="http://www.designbombs.com/wp-content/
themes/DesignBombs/images/gallery/struckaxiom.gif" alt="" /></span>
</a>
<p>Ut dolus ullamcorper, gravis ad eu typicus. <p>
<p>Jumentum in, premo pertineo valde mara velit haero
ulciscor abigo commodo vulputate volutpat. </p>
<p>Jumentum in, premo pertineo valde mara velit haero
ulciscor abigo commodo vulputate volutpat.</p> </div>

Por último agregamos el código CSS:

/*--Tooltip Styles--*/
.tip {
color: #fff;
background:#1d1d1d;
display:none; /*--Hides by default--*/
padding:10px;
position:absolute;	z-index:1000;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.container {width: 960px; margin: 0 auto; overflow: hidden;}

Simple Tooltip w/ jQuery & CSS

Visitar: www.sohtanaka.com/web-design/simple-tooltip-w-jquery-css

Por Diego Cambiaso

Comunicador Social, Desarrollador de Software y UX Designer. Blogger desde el 2006, creador de Pixelco Tech. Viajero y fotógrafo. Entusiasta del diseño, apasionado por la tecnología y el social media. EN-ES-IT