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
<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