문제

I implemented this "Infinite Scroll" plugin (Paul Irish one).

Though i've stumbled upon a problem, the plugin loads finishedMsg upon visiting the page without even moving the page and if you scroll fast enough you can see the "Next/Prev" buttons disappear and the message appearing before it disappears as well.

$('.infinite').infinitescroll({
loading: {
    finishedMsg: "<em>Congratulations, you've reached the end of the internet.</em>",
    msgText: "<em>Loading the next set of posts...</em>"
},
debug: false,
nextSelector: ".page-navigation span.prev a",
navSelector: '.page-navigation span a',
extraScrollPx: 0,
appendCallback: true
});
도움이 되었습니까?

해결책

I just removed the entire thing and instead I implemented a Position:fixed in CSS to make my own Next/Previous.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top