¿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:
http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js</a>"> $(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 }); } }); });
Luego creamos la estructura HTML que será el contenedor del tooltip:
Simple Tooltips w/ CSS & jQuery Tutorial by Soh Tanaka
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;"> http://www.designbombs.com/wp-content/themes/ DesignBombs/images/gallery/struckaxiom_thumb.gif" alt=""/> http://www.designbombs.com/wp-content/ themes/DesignBombs/images/gallery/struckaxiom.gif" alt="" />Ut dolus ullamcorper, gravis ad eu typicus.
Jumentum in, premo pertineo valde mara velit haero ulciscor abigo commodo vulputate volutpat.
Jumentum in, premo pertineo valde mara velit haero ulciscor abigo commodo vulputate volutpat.
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