如何使Facebook像按钮的弹出框出现在左侧

时间:2015-12-23 07:24:47

标签: javascript jquery html facebook

html显示类似按钮:

<div class="fb-like" data-href="https://www.facebook.com/TheGloopal/?fref=ts" data-layout="button" data-action="like" data-show-faces="false" data-share="false" style='float:right;'></div>

enter image description here

单击fb时弹出弹出窗口,如右图所示。但我希望它显示在左侧,因为按钮位于右侧。

enter image description here

我提到了这个:Facebook send button flyout

并尝试以下但不起作用,

.fb_edge_widget_with_comment span.fb_edge_comment_widget {
   left: -45px !important;
}

3 个答案:

答案 0 :(得分:0)

它在html按钮代码中:

<div class="fb-like" data-href="https://www.facebook.com/TheGloopal/?fref=ts" data-layout="button" data-action="like" data-show-faces="false" data-share="false" style='float:right;'></div>

您需要更改style='float:right;'style='float:left;'

的位置

答案 1 :(得分:0)

试试这个:

<div class="fb-like" data-href="https://www.facebook.com/TheGloopal/?fref=ts" data-layout="button" data-action="like" data-show-faces="false" data-share="false" style='float:left;'></div>

答案 2 :(得分:0)

这解决了这个问题。我在下面的css中添加了

.fb_iframe_widget iframe {
    position:absolute;
    right:0px;
    background:#fff; /* in your case you may want to add a white background */
    transition: all .5s; /* completely optional, but adding a transition makes for a nice effect */
}