Right now I have the code below for infinite scrolling. However, the loading is very sudden and not very smooth. Is there a way to make it fade in or transition nicely?
export function line1_viewportEnter(event, $w) {
$w("#dataset1").loadMore()
.then( () => {
console.log("Done loading more data");
});
}
Thanks.