0

I'm trying to get the tweet button from twitter to work but the iframe generated by the code always gives me a width of 107px by default... I'd like the size of the iframe to change according to the button real size... I can change that via css but giving it a width size of auto doesnt work...

thank you guys

4

1 回答 1

1

您可以在一定程度上控制 iFrame 中 Twitter 按钮的呈现。您可以在调用中添加一个size属性,它会为您提供几个可供选择的尺寸版本。

例如:

<iframe allowtransparency="true" frameborder="0" scrolling="no"
        src="https://platform.twitter.com/widgets/tweet_button.html?size=medium"
        style="width:130px; height:20px;"></iframe>

尺寸为中号、大号

如需完整参考,请参阅Tweet Button 文档

另外,因为它的记录很差。有关向推文按钮的 iFrame 版本添加参数的帮助,请参阅Twitter 开发人员倡导者的此注释

同样,看这里如何更改 Twitter 的分享按钮高度?

于 2012-12-27T20:26:03.670 回答