gpt4 book ai didi

javascript - 更换推特按钮

转载 作者:太空宇宙 更新时间:2023-11-04 10:24:56 31 4
gpt4 key购买 nike

我设计了自己的 Twitter 按钮,以更好地适应我网站的图形章程。为此,我使用了 Boostrap 的社交按钮。

问题是,如果我用我自己的类 btn btn-social-icon 替换类 twitter-share-buttondata-text 就不再起作用了btn-twitter btn-xs.

如何在保留 data-text 等功能的同时用我的按钮替换 twitter-share-button

这是来自 Twitter 的工作代码,我想在其中替换该类:

    <script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
<div>
<a href="https://twitter.com/share" class="twitter-share-button"
data-url="https://dev.twitter.com/pages/tweet_button"
data-via="your_screen_name"
data-text="Checking out this page about Tweet Buttons"
data-related="anywhere:The Javascript API"
data-count="vertical">Tweet</a>
</div>

最佳答案

正如我所说,我们无法更改来自不同域的 Iframe 的 CSS。所以这是一个解决方案。我用了这个 most of the time .它称为 Twitter Web Intent

我希望这会有用。

P.S 请检查此 jsbin关联。不知何故 jsfiddle 不支持。

$(document).ready(function() {
$('#tweetBtn').click(function() {
var url = 'https://twitter.com/intent/tweet?hashtags=YouAreAwesome&original_referer=' + encodeURIComponent('stackoverflow.com') + '&text=' + encodeURIComponent('Thank you so much @knowkalpesh, you made my day!');
window.open(url, '_blank');
});

});
#tweetBtn {
background: tomato;
padding: 10px;
display: inline-block;
color: #fff;
border-radius: 5px;
cursor: pointer;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="tweetBtn">Custom Tweet Button</div>

关于javascript - 更换推特按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36859263/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com