阻止 Facebook Like 对话框在与 Google Maps API v2 div 重叠的地方闪烁

发布于 2024-12-04 04:24:03 字数 250 浏览 1 评论 0原文

我刚刚实现了 AddThis,在我的 Google 地图上方放置了一个 Facebook Like 按钮(不是顶部 - 位于页面上方)。

当我单击“赞”按钮并获取共享对话框时,我会在重叠的地方出现恼人的闪烁。

我不相信我可以在没有链接的情况下提供示例,抱歉。

有什么方法可以控制这个而不只是改变页面布局吗?

I have just implemented AddThis to place, among other things, a Facebook Like button above my Google Map (not on top of - higher in the page).

When I click the Like button and getting the sharing dialog I get an annoying flickering where things overlap.

I don't believe I can provide an example without linking, I'm sorry.

Is there any way to control this without just changing the page layout?

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

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

发布评论

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

评论(2

沉默的熊 2024-12-11 04:24:03

我通过添加解决了这个问题
样式=“不透明度:1;过滤器:alpha(不透明度= 100);”
到 addthis_button_facebook_like 锚点。

I fixed this by adding
style="opacity: 1;filter: alpha(opacity=100);"
to the addthis_button_facebook_like anchor.

肩上的翅膀 2024-12-11 04:24:03

我们也遇到了类似的问题,链接对话框与 Facebook 评论框重叠时闪烁。使用了 Daco 的代码,效果很好。

.addthis_button_facebook_like {
    opacity: 1;
    filter: alpha(opacity=100);
 }

在 Chrome、Firefox 和 Safari 上进行了测试。

We had a similar problem with the link dialog box flickering where it overlapped a fb comment box. Used Daco's code and it works great.

.addthis_button_facebook_like {
    opacity: 1;
    filter: alpha(opacity=100);
 }

Tested on Chrome, Firefox, and Safari.

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