Facebook 点赞按钮(XFBML 版本)高度

发布于 2024-09-04 04:24:49 字数 1007 浏览 6 评论 0原文

我对 Facebook 点赞按钮的高度有疑问。我使用带有此标签的 XFBML 版本

<fb:like layout="standard" show_faces="true" width="440" action="recommend" colorscheme="light"></fb:like>

在某些网站上,包含按钮的 iframe 的高度是动态的。当有“面孔”要显示时,它的高度为 61px;当没有面孔要显示时,它的高度为 23px。当用户按下“喜欢”按钮时(并且按钮下方会出现他的脸),这种情况会发生动态变化。

适用的网站示例:

不幸的是,当我尝试将标签插入到我的页面中时,iframe 的高度设置为 80px 并且没有改变。

我当前的解决方案是将盒子的高度设置为23px,并将其容器的溢出CSS属性设置为隐藏。但通过这个解决方案,我失去了展示面孔的能力。

这个问题已经发布在 Stack Overflow 上,但没有解决方案。 - stackoverflow.com/questions/2777196/facebook-like-button-fblike-height-always-80px

我花了大约 6 个小时试图解决这个问题。但我仍然认为必须有一个简单的解决方案。

感谢您的任何建议。

I'm having a problem with the height of the Facebook Like button. I use the XFBML version with this tag

<fb:like layout="standard" show_faces="true" width="440" action="recommend" colorscheme="light"></fb:like>

On some sites, the height of the iframe which contains the button is dynamic. It has the height of 61px, when there are "faces" to display and 23px when there are no faces to display. This changes dynamcally when the user presses the like button (and a his face appears undes the button).

Examples of sites where this works:

Unfortunately, when I try to insert the tag into my page, the height of the iframe is set to 80px and it doesn't change.

My current solution is to set the height of the box to 23px and set the overflow CSS property of its container to hidden. But with this solution I lose the ability to show faces.

This problem is already posted here on Stack Overflow, but with no solution. - stackoverflow.com/questions/2777196/facebook-like-button-fblike-height-always-80px

I've spent about 6 hours trying to figure this problem out. But I still think there must be a simple solution for this.

Thanks for any suggestions.

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

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

发布评论

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

评论(1

埋葬我深情 2024-09-11 04:24:49

如果您不想显示面孔,并保持静态 23px 高度,可以将 XFBML fb:like 标记上的 show_faces 参数设置为 false< /代码>。如果您确实想显示面孔,我会将 标签包装在容器 div 中,并将其 height 设置为61px。这应该允许“like”按钮周围的任何内容保持在原位,并且 iframe/like 按钮的内容会随着面孔的添加/删除而变化。

If you don't want to show faces, and keep the static 23px height, you can set the show_faces parameter on the XFBML fb:like tag to false. If you DO want to show faces, I'd wrap the <fb:like> tag in a container div and set it's height to 61px. This should allow whatever content is around the like button to stay in place, and the content of the iframe/like button change as faces are added/removed.

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