Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <!-- rss feeds -->
  2. <script>
  3. jQuery(function($) {
  4. $("#rss-feeds").rss("http://www.rotoworld.com/rss/feed.aspx?sport=nfl&ftype=news&count=12&format=rss", {
  5. limit: 5,
  6. layoutTemplate: '<div class="panel panel-default"><div class="panel-heading">Panel heading</div><ul class="list-group">{entries}</ul></div>',
  7. entryTemplate: '<li class="list-group-item"><dt><a href="{url}">{title}</a></dt><dd><small>{date}<br>{shortBodyPlain}</dd></small></li>',
  8. effect: 'show'
  9. })
  10. })
  11. </script>
  12. <!-- /rss feeds -->
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20. <!-- back to top -->
  21. <script>
  22. $(document).ready(function(){
  23. $(window).scroll(function () {
  24. if ($(this).scrollTop() > 50) {
  25. $('#back-to-top').fadeIn();
  26. } else {
  27. $('#back-to-top').fadeOut();
  28. }
  29. });
  30. // scroll body to 0px on click
  31. $('#back-to-top').click(function () {
  32. $('#back-to-top').tooltip('hide');
  33. $('body,html').animate({
  34. scrollTop: 0
  35. }, 800);
  36. return false;
  37. });
  38.  
  39. $('#back-to-top').tooltip('hide');
  40.  
  41. });
  42. </script>
  43. <!-- /back to top -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement