0.0.2 • Published 4 years ago

sas-infinite-scroll v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

sas-infinite-scroll

Infinite scroll for an element

use

npm install sas-infinite-scroll --save

import sasInfiniteScroll from '/node_modules/sas-infiniteScroll/source/sas-infiniteScroll.js';

var a = 1;
new sasInfiniteScroll({
    where   : // element,
    distance: // pixels to call,
    callback: function() {
        // alert("End");
        // more data
        a++;
    }
});