向您的网站添加自定义 Twitter 按钮比您想象的要容易得多。
<a href="http://twitter.com/share">Tweet</a>
是的,真的,仅此而已。给你的链接一些设计的爱和tada!您自己的自定义 Twitter 按钮。
在弹出窗口中打开 Twitter 共享框
要将 Twitter 共享框显示为弹出窗口,只需添加几行 javascript 即可在新窗口中打开链接。这是一个使用 jQuery 的示例:
<a class="twitter popup" href="http://twitter.com/share">Tweet</a>
<script>
$('.popup').click(function(event) {
var width = 575,
height = 400,
left = ($(window).width() - width) / 2,
top = ($(window).height() - height) / 2,
url = this.href,
opts = 'status=1' +
',width=' + width +
',height=' + height +
',top=' + top +
',left=' + left;
window.open(url, 'twitter', opts);
return false;
});
</script>
注意:这只是一个例子。您可能希望将 javascript 代码放在 .js 文件中,并在准备好文档时调用它。
$(document).ready(function() {
$('.popup').click(function(event) {
// and so on...
}
});
为推文设置默认消息
您可以为推文设置默认文本,将文本参数添加到链接:
<a class="twitter popup" href="http://twitter.com/share?text=This%20is%20so%20easy">Tweet</a>
现在,当您的用户单击您的推文链接时,默认情况下,推文框中将显示“这很容易”的消息。
更多的..