我如何才能在 Facebook 上显示“喜欢”鼠标悬停在图像上时链接?

发布于 2024-11-29 05:00:23 字数 167 浏览 0 评论 0原文

如何在图像上显示 Facebook“点赞”链接?我希望 Facebook 的“点赞”按钮仅在鼠标悬停在图像上时加载。

我想到了一些事情,比如当鼠标悬停在图像上时在图像上附加 iframe,因为如果页面上有很多图像,这样可以防止速度变慢。

我怎样才能用/不用 jQuery 来做这样的事情?

How can I show the Facebook "like" link on an image? I would like the Facebook "like" button to only load when a mouse is over the image.

I had something in mind like appending the iframe on the image as the mouse is over the image as that would prevent slow down if there are many images on the page.

How can I do something like this with/without jQuery?

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

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

发布评论

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

评论(3

空名 2024-12-06 05:00:23

你不能简单地将这个按钮加载到div中并在鼠标悬停时隐藏img/显示div并在鼠标移开时显示img/隐藏div吗?

Can't you simple load this like button into div and hide img/show div on mouseover and show img/hide div on mouseout ?

一生独一 2024-12-06 05:00:23
<div id="like" style="display:none; ">
 <!-- FB code like here -->
</div>
<img src="x.gif" id="im" />
<script>
$("#im").hover(function(){
  $("#like").show();
},function(){
  $("#like").hide();
});
</script>
<div id="like" style="display:none; ">
 <!-- FB code like here -->
</div>
<img src="x.gif" id="im" />
<script>
$("#im").hover(function(){
  $("#like").show();
},function(){
  $("#like").hide();
});
</script>
淡淡的优雅 2024-12-06 05:00:23

正常加载 Facebook 脚本,但尚不包含任何按钮代码。然后,在鼠标悬停时,为 Facebook 按钮编写 div 标签,并通过调用初始化按钮:

FB.XFBML.parse();

这将搜索整个 DOM 并初始化每个按钮。

或者,要仅评估文档的一部分,您可以传入单个元素。

FB.XFBML.parse(document.getElementById('foo'));

Load the Facebook script as normal, but don't include any button code yet. Then, onmousover, write your div tags for the Facebook button, and initialize the button by calling:

FB.XFBML.parse();

That will search the entire DOM and initialize every button.

Alternatively, to only evaluate only a portion of a document, you can pass in a single element.

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