2011-08-29 166 views

回答

0

你需要的是一個JavaScript工具提示插件。 嘗試google「jquery tooltip插件」。

一個不錯的插件是flowplayer tooltip pluginhowtodownload)。你可以在工具提示框中自定義html。

0

這是相當普遍的效果。他們有一個滾動窗格隱藏,絕對定位容器.ibm-expand-overlay。他們都包裹在相對定位div。在窗格子項的mouseenter上觸發效果,在他們的情況下.ibm-columns

$('.ibm-columns').mouseenter(function() { 

    //some positioning logic is needed here 
    //probably $('.ibm-expand-overlay').css('left', $(this).index() * childWidth) is sufficient enought 

    $('.ibm-expand-overlay').fadeIn(); 
}); 

$('.ibm-expand-overlay').mouseleave(function() { $(this).fadeOut(); }); //to hide on mouseleave 
相關問題