Страница непрерывной цикличности (не бесконечная прокрутка) продолжение - PullRequest
0 голосов
/ 15 октября 2018

Я попытался использовать приведенный ниже код из предыдущего вопроса Страница с непрерывной цикличностью (не бесконечная прокрутка) , чтобы заставить цикл работать, и он прекрасно работает локально, но не в реальной среде, когда сервер должен загружатьизображения - содержимое пропадает в нижней части страницы, а затем не включается в цикл.Как можно загрузить весь контент перед активацией цикла?

$('document').ready(function() {

 // We need to duplicate the whole body of the website so if you scroll down you can see both the bottom and the top at the same time. Before we do this we need to know the original height of the website.
 var origDocHeight = document.body.offsetHeight;

 // now we know the height we can duplicate the body    
 $("body").contents().clone().appendTo("body");


 $(document).scroll(function(){ // detect scrolling

     var scrollWindowPos = $(document).scrollTop(); // store how far we have scrolled

     if(scrollWindowPos >= origDocHeight ) { // if we scrolled further then the original doc height
         $(document).scrollTop(0); // then scroll to the top
     }       
 });

});

...