Skip to content

Instantly share code, notes, and snippets.

@crbdev
Created February 10, 2022 11:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crbdev/8af55e3142ffc832f82968317a52c2f4 to your computer and use it in GitHub Desktop.
Save crbdev/8af55e3142ffc832f82968317a52c2f4 to your computer and use it in GitHub Desktop.
<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