Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <script src="https://code.jquery.com/jquery-3.4.1.min.js"
  2. integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
  3. crossorigin="anonymous"></script>
  4. <script type="text/javascript">
  5.  
  6. $(window).scroll(function(){
  7.  
  8. if($(window).scrollTop() > $(document).height() - $(window).height() - 50) // -50 and - 50 might cause some errors, if I remember right, just JS things...
  9. {
  10. $('.infinite').append('<div></div>');
  11. }
  12. });
  13.  
  14.  
  15.  
  16.  
  17.  
  18. var count = 100;
  19. var index = 1;
  20.  
  21. while (index <= count) {
  22. document.getElementById('container').innerHTML += '<img src="https://picsum.photos/200/100.webp?grayscale&blur=2?random=$"+[$index] alt="nothing">';
  23. console.log(index);
  24. index++;
  25. }
  26. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement