Skip to content

Instantly share code, notes, and snippets.

@fuhoi
Created December 22, 2011 04:06
Show Gist options
  • Save fuhoi/1508881 to your computer and use it in GitHub Desktop.
Save fuhoi/1508881 to your computer and use it in GitHub Desktop.
Twitter Widget
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 30000,
width: 250,
height: 300,
theme: {
shell: {
background: '#ddeef6',
color: '#000000'
},
tweets: {
background: '#ffffff',
color: '#000000',
links: '#0084b4'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
behavior: 'default'
}
}).render().setUser('fuhoi').start();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment