包含名称的 jQuery 浮动框

发布于 2024-12-09 13:33:15 字数 119 浏览 0 评论 0原文

有人可以为我指出正确的方向,以获取教程或类似的代码,创建与 Facebook 的此屏幕截图相同的效果:

悬停在图像上时,会显示他们的用户名。

我想要使​​用 jQuery。

Could someone point me in the right direction for a tutorial or similar code creating the same effect as in this screenshot from Facebook:

enter image description here

When I hover over the images, their username is shown.

I'd like this using jQuery.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

£烟消云散 2024-12-16 13:33:15

使用 jQuery 实现这种效果的最接近的库是 tipsy

The closest library to achieve this effect with jQuery would be tipsy

苹果你个爱泡泡 2024-12-16 13:33:15

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 和其他排队方法。这是一个非常简单的模型,应该针对现场环境进行改进

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 won't be hard to change to your own.

Also you may want to look at hoverIntent and other queuing methods. This is a VERY SIMPLE mockup and should be improved upon for a live environment

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文