I tried to search and see if there was anything listed under this but I didn\'t see anything. I have a gallery thats laid out using Isotope and it works fine, but while the
The plugin's author explains it on GitHub. It's pretty simple actually. Just add the fadeIn
right before starting the isotope gallery.
var $container = $('#container');
$container.imagesLoaded( function(){
$container.fadeIn(1000).isotope({
layoutMode : 'fitRows',
itemSelector : '.photo'
});
});