Upward scroll
Caveats
Fixed height images
Setup
<div class="pagination"> <a href="page1.html" class="prev">Prev</a> <span class="current">2</span> <a href="page3.html" class="next">Next</a> </div>// import if you use the NPM package import InfiniteAjaxScroll from '@webcreate/infinite-ajax-scroll'; let ias = new InfiniteAjaxScroll('.container', { item: '.item', next: '.next', prev: '.prev', pagination: '.pagination' });
Hook into upward scroll with events
Inform user about first page reached
Last updated