2011-10-14 150 views
0
jQuery的浮箱

可能有人點我的教程或類似的代碼創建在這個截圖來自Facebook同樣的效果正確的方向:包含名稱

enter image description here

當我將鼠標懸停在圖片,他們的顯示用戶名。

我想用jQuery。

+2

東西像[jquery tooltip插件](http://jquery.bassistance.de/tooltip/demo/)? – JMax

回答

1

最近的圖書館,實現與jQuery這個效果會tipsy

+0

我喜歡它,我喜歡它! – Luke

1

http://jsfiddle.net/T3xCK/

CSS:

.profile{position:relative; width:100px; height:100px; background:#FF0000; float:left; margin:10px;} 

.profile .username{position:absolute; top:-30px; left:0; background: rgba(0,0,0,0.7); display:none; width:100px; height:30px;} 

JS:

$('.profile').hover(function(){ 
    $(this).children('.username').fadeIn(); 
}, function(){ 
    $(this).children('.username').fadeOut(); 
}); 

HTML

<div class="profile"> 
    <div class="username"></div> 
</div> 
<div class="profile"> 
    <div class="username"></div> 
</div> 
<div class="profile"> 
    <div class="username"></div> 
</div> 

CSS不會很難改變你自己。

此外,你可能想看看hoverIntent和其他排隊方法。這是一個非常簡單的模型,應該改進爲一個現場環境

+0

謝謝你的代碼! – Luke

+0

沒問題。 @Cystack的帖子可能對你的情況更好,但如果你想學習開發自己的,上面應該是一個很好的起點! – rickyduck