-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Infinite scroll #5
Comments
When using imagesLoaded, this callback will hide items, then reveal them after images have been loaded. function( newElems ) {
// initially hide new elements, and use imagesLoaded
var $newElems = $( newElems ).hide().imagesLoaded( function() {
// show when ready to reveal
$newElems.show();
$container.isotope( 'appended', $newElems );
});
} |
Hi, until we have some v2 infinitescroll documentation, would you able to demonstrate where this code should be inserted in order to get infinite scroll working? This is my current code: if($('.portfolio-section').length > 0){ Thanks in advance! |
Infinite Scroll v3 has been released with direct integration via [ Tracking filtering + Infinite Scroll at metafizzy/isotope#1358 |
Add docs for infinite scroll, currently missing in the v2 docs.
The text was updated successfully, but these errors were encountered: