Skip to content

Instantly share code, notes, and snippets.

@kishanio
Last active August 29, 2015 14:25
Show Gist options
  • Save kishanio/2460d1b672cb06fd1561 to your computer and use it in GitHub Desktop.
Save kishanio/2460d1b672cb06fd1561 to your computer and use it in GitHub Desktop.
Spotify Like Image Masonry
<!-- Import jquery.js & masonry.js -->
<script src="js/libs/jquery.js"></script>
<script src="js/libs/masonry.js"></script>
<!-- Create empty container -->
<div class="masonry"></div>
<!-- Call the function -->
<script>
// images array
var images = [ '<image1>', '<image2>' ];
// parameters [container,images,size] respectively
masonry.init( '.masonry' , images , 100 );
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment