Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialEric Kim
3,637 PointsDoes anyone knows good guideline for Jquery Masonry?
I've been having a hard time to get used to this awesome masonry design code. Does anyone knows good guideline for this? Or does treehouse have a future roadmap for this?
4 Answers
Aleksej Dix
8,087 PointsHere i've found something:
http://www.creativebloq.com/css3/get-started-jquery-masonry-8123019
Nicola Zanon
457 PointsWhat are you exactly looking for? How to implement the code in a page?
Eric Kim
3,637 PointsYes, exactly. I would like to master it!! :)
Eric Kim
3,637 PointsYes, exactly. I would like to master it!! :)
Nicola Zanon
457 PointsIt's pretty simple:
<div id="container"> <img class="item" src="path/img.jpg"> <img class="item" src="path/img.jpg"> <img class="item" src="path/img.jpg"> </div>
And jQuery
$('#container').masonry({ columnWidth: 200, itemSelector: '.item' });