Twitter跨浏览器关注按钮
Posted
技术标签:
【中文标题】Twitter跨浏览器关注按钮【英文标题】:Follow Button of Twitter cross-browser 【发布时间】:2018-04-20 10:40:56 【问题描述】:我想在我的平均堆栈网页上添加 Twitter 的关注按钮。我使用以下代码:
https://jsbin.com/herikik/3/edit?html,output
<iframe
src="https://platform.twitter.com/widgets/follow_button.html?screen_name=Google&show_screen_name=false&show_count=false&size=l"
title="Follow us on Twitter"
style="border: 0; overflow: hidden;"></iframe>
在 Mac 下的 Chrome 中运行良好。但是在Windows下的Chrome和Edge中却显示:
有谁知道如何修改代码以使其能很好地跨浏览器显示?
【问题讨论】:
尝试将scrolling="no"
添加到<iframe>
。
【参考方案1】:
尝试将scrolling="no"
添加到<iframe>
。
<iframe
src="https://platform.twitter.com/widgets/follow_button.html?screen_name=Google&show_screen_name=false&show_count=false&size=l"
title="Follow us on Twitter"
style="border: 0; overflow: hidden;"
scrolling="no">
</iframe>
【讨论】:
以上是关于Twitter跨浏览器关注按钮的主要内容,如果未能解决你的问题,请参考以下文章