codrops / GridLoadingEffects

Some inspiration for loading effects of grid items using CSS animations.
510 stars 126 forks source link

How to hide images before layout #3

Open speg opened 10 years ago

speg commented 10 years ago

How do you hide the images before Masonry organizes them into a grid? My shows the images in a pile as they are being loaded and then finally once they are all loaded then Masonry organizes them nicely.

Kyslik commented 8 years ago

they use imagesLoaded

$container.imagesLoaded(function(){
      $container.masonry({
        itemSelector: 'li.post'
      });
    });