wafiosadesigns

code scroll

Jan 20th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. CODE BLOQUEANDO A PAGINAÇÃO:
  2.  
  3. {block:IndexPage}
  4. <div class="column navigation" id="navigation">
  5. {block:Pagination}
  6. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  7. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  8. </div>
  9. {/block:IndexPage}
  10.  
  11.  
  12.  
  13.  
  14.  
  15. CODE DE ROLAGEM INFINITA:
  16.  
  17. <!-- SCROLL -->
  18. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script>
  19. <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>
  20. <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
  21.  
  22.  
  23.  
  24.  
  25. <!-- ROLAGEM -->
  26. <script type="text/javascript">
  27. $(window).load(function () {
  28. $('#sh-cx').masonry(),
  29. $('.masonryWrap').infinitescroll({
  30. navSelector : "div#navigation",
  31. nextSelector : "div#navigation a#nextPage",
  32. itemSelector : ".sh-posts",
  33. bufferPx : 10000,
  34. extraScrollPx: 11000,
  35. loadingImg : "http://static.tumblr.com/8yo5xxv/3Tum7rjpo/loader.gif",
  36. loadingText : "",
  37. },
  38. // call masonry as a callback.
  39. function() { $('#sh-cx').masonry({ appendedContent: $(this) }); }
  40. );
  41. });
  42. </script>
Advertisement
Add Comment
Please, Sign In to add comment