2011-08-29 136 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