有没有办法隐藏推特小部件的转发?
这是我目前的代码:
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'search',
search: 'from:tackydotno OR @tackydotno',
interval: 2000,
title: 'It\'s a double rainbow',
subject: 'Across the sky',
width: 250,
height: 300,
theme: {
shell: {
background: '#8ec1da',
color: '#ffffff'
},
tweets: {
background: '#ffffff',
color: '#444444',
links: '#1985b5'
}
},
features: {
scrollbar: true,
loop: true,
live: false,
hashtags: true,
timestamp: true,
avatars: true,
toptweets: true,
behavior: 'default'
}
}).render().start();
</script>
将toptweets设置为false只会隐藏文本“### +最近转发”。
或者这是Twitter包含的东西,如果我想使用官方的推特小部件我必须忍受吗?
如果是这样,任何人都可以指向一个好的第三部分小部件/脚本的方向吗?最好是基于jquery(或没有框架)。
答案 0 :(得分:1)
刚刚发现这个与Twitter开发人员非常有用的小交流:
https://dev.twitter.com/discussions/1442
自己尝试一下 - 让我知道它是否适合你。
Yip - 像魅力一样工作 - 用widget.js文件中的include_rts = false替换include_rts = true的所有实例。 (显然需要在本地存储)
我的列表查看器工作得很好 - 让我知道它是否适用于您的TOP TWEET查看器