Skip to content

Instantly share code, notes, and snippets.

@crbdev
Created February 10, 2022 11:41
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
<script src="https://unpkg.com/isotope-layout@3/dist/isotope.pkgd.min.js"></script>
<script>
jQuery.noConflict();
jQuery( document ).ready( function( $ ) {
// Fixed Layout
var $grid = jQuery('.gv-diy-container').isotope({
// options...
itemSelector: '.gv-diy-view',
masonry: {
columnWidth: 100
}
});
// layout Isotope after each image loads
$grid.imagesLoaded().progress( function() {
$grid.isotope('layout');
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment