从Twitter关注按钮隐藏“关注者”一词

时间:2012-06-03 22:17:06

标签: twitter twitter-button

有没有办法修改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>

2 个答案:

答案 0 :(得分: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 */
}

这对我来说可以创造出你想要的东西。希望这会有所帮助。

答案 1 :(得分: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>