2012-09-23 166 views

回答

3

這一切需要的JavaScript或jQuery的

試試這個

HTML

<h1 id="book" title="hello onw" >the title </h1> 

jQuery的

$("#book").append("<em></em>"); 
$("#book").hover(function() { 
     $(this).find("em").animate({opacity: "show", top: "-75"}, "slow"); 
     var hoverText = $(this).attr("title"); 
     $(this).find("em").text(hoverText); 
    }, function() { 
     $(this).find("em").animate({opacity: "hide", top: "-85"}, "fast"); 
    }); 

檢查fiddle

還檢查this