9

有没有办法修改 Twitter 的“关注”按钮以在气泡中显示关注者的数量但隐藏“关注者”一词?我基本上希望我的“关注”按钮看起来与“推特”按钮相同。

当前代码如下所示:

<a href="https://twitter.com/User" class="twitter-follow-button" data-show-count="true" 
data-show-screen-name="false" data-dnt="true">Follow @User</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id))
{js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
4

2 回答 2

14

我遇到了同样的问题并通过基本上隐藏“追随者”这个词并在气泡中创建一个假的右边缘来解决它,如果这有意义的话。因此,您必须将按钮包装在其自己的 div 中,然后隐藏该 div 的溢出并将宽度设置为单词消失的确切点,并将高度精确设置为您正在使用的按钮的高度。这是一个代码示例:

#titter-div {
    border-radius: 4px; /* to mimic the curved edges of the count box */
    border-right: 1px solid #AAAAAA; /* this is the width and color of the count box border */
    height: 20px; /* this height works for the medium button */
    width: 88px; /* precise width to hide the word */
    overflow: hidden; /* actually hides the word */
}

这对我来说可以准确地创建您正在寻找的东西。希望这可以帮助。

于 2012-07-26T07:33:32.520 回答
0

要在气泡中显示关注者的数量但隐藏“关注者”一词,这是我使用 iframe 的代码:

<iframe
  src="//platform.twitter.com/widgets/follow_button.html?screen_name=Vacance_Luberon&show_screen_name=false"
  style="width: 88px; height: 20px;"
  allowtransparency="true"
  frameborder="0"
  scrolling="no">
</iframe>

于 2015-02-15T06:52:21.470 回答