Esta pergunta é mais para o DJPRMF, pois a dúvida que tenho é sobre algo que está aqui no fórum:
No lado direito do logotipo do fórum, "Tuga Tech" , estão uns icones(Adicionar aos favoritos, pagina inicial,blog,RSS,etc...)
Quando se passa o cursor em qualquer um dos icones aparece um detalhe da image, num rectângulo cinzento, será que me podem dar uma ajudinha, de como fazer algo assim em websites?
//Select all anchor tag with rel set to tooltip $('a[rel=tooltip]').mouseover(function(e) {
//Grab the title attribute's value and assign it to a variable var tip = $(this).attr('title');
//Remove the title attribute's to avoid the native tooltip from the browser $(this).attr('title','');
//Append the tooltip template and its value $(this).append('<div id="tooltip"><div class="tipHeader"></div><div class="tipBody">' + tip + '</div><div class="tipFooter"></div></div>');
//Set the X and Y axis of the tooltip $('#tooltip').css('top', e.pageY + 10 ); $('#tooltip').css('left', e.pageX + 20 );
//Show the tooltip with faceIn effect $('#tooltip').fadeIn('500'); $('#tooltip').fadeTo('10',0.8);
}).mousemove(function(e) {
//Keep changing the X and Y axis for the tooltip, thus, the tooltip move along with the mouse $('#tooltip').css('top', e.pageY + 10 ); $('#tooltip').css('left', e.pageX + 20 );
}).mouseout(function() {
//Put back the title attribute's value $(this).attr('title',$('.tipBody').html());
//Remove the appended tooltip template $(this).children('div#tooltip').remove();
});
});
</script>
<style> body {font-family:arial;font-size:12px;text-align:center;} div#paragraph {width:300px;margin:0 auto;text-align:left} a {color:#aaa;text-decoration:none;cursor:pointer;cursor:hand} a:hover {color:#000;text-decoration:none;}
Nem é necessário um tutorial muito complicado... A própria explicação está no site do script... Veja na secção "Final Product". Basta depois editar conforme o seu site..
lembre-se que deve fazer o download do script e fazer o uplaod do mesmo para o seu servidor.. .