Advertisement
Guest User

Know Your Meme Twitter Feed Scripts

a guest
Nov 5th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. KYM TWITTER FEED FOR A HASHTAG
  2.  
  3. <br><center><script src="http://widgets.twimg.com/j/2/widget.js"></script>
  4. <script>
  5. new TWTR.Widget({
  6. version: 2,
  7. type: 'search',
  8. search: '#HASHTAG',
  9. interval: 30000,
  10. title: 'Tweet Results For',
  11. subject: '#HASHTAG',
  12. width: 425,
  13. height: 300,
  14. theme: {
  15. shell: {
  16. background: '#000033',
  17. color: '#ffffff'
  18. },
  19. tweets: {
  20. background: '#ffffff',
  21. color: '#000000',
  22. links: '#a60011'
  23. }
  24. },
  25. features: {
  26. scrollbar: false,
  27. loop: true,
  28. live: true,
  29. hashtags: true,
  30. timestamp: true,
  31. avatars: true,
  32. toptweets: true,
  33. behavior: 'default'
  34. }
  35. }).render().start();
  36. </script></center><br>
  37.  
  38.  
  39. KYM TWITTER FEED FOR A PERSON
  40.  
  41. <br><center><script src="http://widgets.twimg.com/j/2/widget.js"></script>
  42. <script>
  43. new TWTR.Widget({
  44. version: 2,
  45. type: 'profile',
  46. rpp: 20,
  47. interval: 30000,
  48. width: '500',
  49. height: 400,
  50. theme: {
  51. shell: {
  52. background: '#000033',
  53. color: '#ffffff'
  54. },
  55. tweets: {
  56. background: '#ffffff',
  57. color: '#000000',
  58. links: '#990000'
  59. }
  60. },
  61. features: {
  62. scrollbar: true,
  63. loop: false,
  64. live: true,
  65. behavior: 'all'
  66. }
  67. }).render().setUser('USERNAME-WITHOUT-AT-SYMBOL').start();
  68. </script></center><br>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement