Created
July 30, 2019 04:13
-
-
Save robertcedwards/0c98521ecc52f0f4ccbe0cde8c8b520f to your computer and use it in GitHub Desktop.
Correct order for load and layout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function($){ | |
$('section.loading').fadeOut('fast'); | |
$('section.gallery').imagesLoaded(function() { | |
$('.gallery').packery({ | |
itemSelector: 'div', | |
gutter: 10 | |
}); | |
$('section.gallery').addClass('loaded'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment