Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. $(document).ready(function() {
  2. var plinks = [
  3. {
  4. name: 'PCkTM',
  5. plink: 'http://steamcommunity.com/profiles/76561198165613182'
  6. },
  7. {
  8. name: 'A200K',
  9. plink: 'https://steamcommunity.com/profiles/76561198064858082'
  10. },
  11. {
  12. name: 'shad0w',
  13. plink: 'https://steamcommunity.com/profiles/76561198022411177'
  14. },
  15. {
  16. name: 'dasMax',
  17. plink: 'http://steamcommunity.com/profiles/76561198045660273'
  18. },
  19. {
  20. name: 'WsTeKK',
  21. plink: 'http://steamcommunity.com/profiles/76561198056626692'
  22. },
  23. {
  24. name: 'Liikz',
  25. plink: 'http://steamcommunity.com/profiles/76561198074363972'
  26. },
  27. {
  28. name: 'Lonax',
  29. plink: 'https://steamcommunity.com/profiles/76561197968013723'
  30. },
  31. {
  32. name: 'netv4r',
  33. plink: 'https://steamcommunity.com/profiles/76561198388609990'
  34. },
  35. {
  36. name: 'dmtz',
  37. plink: 'http://steamcommunity.com/profiles/76561197963395245'
  38. },
  39. {
  40. name: 'Minami',
  41. plink: 'http://steamcommunity.com/profiles/76561198163027557'
  42. },
  43. {
  44. name: 'xCryp0',
  45. plink: 'http://steamcommunity.com/profiles/76561198082093621'
  46. },
  47. ];
  48.  
  49. for(var i in plinks) {
  50. var plink = plinks[i];
  51.  
  52. $('#marquee').append('<a href="' + plink.plink + '">' + plink.name + '</a>');
  53.  
  54. var plink = $('#marquee').children('a').last();
  55.  
  56. if(i != plinks.length - 1) {
  57. $('#marquee').append(' · ');
  58. }
  59. }
  60.  
  61. $('#marquee').marquee({
  62. duration: 20000,
  63. gap: 400,
  64. delayBeforeStart: 0,
  65. direction: 'left',
  66. duplicated: true
  67. });
  68. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement