Create a Resizable Image Grid with jQuery
Image grids that smoothly scale at the simple drag of a slider are no longer confined to desktop apps like iPhoto or Picasa. Thanks to some clever CSS and the jQuery UI, fluid image grids are now surprisingly simple to implement on the web. (Take a peek at the final product.)
Setting up the grid
First lets begin by setting up a static image grid. I have prepared 6 photographs than have been cropped to a maximum height and width of 500 pixels. We will create a ul and place our images inside li tags.
<ul id="grid"> <li><img src="1deadsea.jpg"/></li> <li><img src="2akko.jpg"/></li> <li><img src="3jordan.jpg"/></li> <li><img src="4petra.jpg"/></li> <li><img src="5pyramids.jpg"/></li> <li><img src="6deadsea.jpg"/></li> </ul>
Next, we will float the lis so that they wrap nicely and place a bit of margin on the right and bottom edges of the lis to add a bit of whitespace.
Image grids look best when the photographs are both vertically and horizontally centered. We can accomplish this by setting the width, height, and line-height values, and then declaring text-align: center on the ul and vertical-align: middle on the image (see iBloom’s article for more about this technique).
ul#grid li {
list-style: none outside;
float: left;
margin-right: 20px;
margin-bottom: 20px;
width: 500px;
height: 500px;
line-height: 500px;
text-align: center;
}
ul#grid li img {
vertical-align: middle;
}
Example 1: The basic image grid. (The images are a bit big at this point, but we’ll be fixing that in just a bit.)
Fun with ems
Here comes the exciting part. Remember the em unit? 1 em is equal to the current font size. So if the font size is 10 pixels, then 1 em is also 10 pixels. This little unit is our magical ingredient.
What we’re going to do next is specify the width and height of our images and their parent lis in ems rather than in pixels. We will use jQuery to measure the pixel size of each image, convert those measurements to ems, and add those new measurements to each image as inline CSS.
$(document).ready(initializeGrid);
function initializeGrid() {
$("ul#grid li img").each(function() {
var width = $(this).width() / 100 + "em";
var height = $(this).height() / 100 + "em";
$(this).css("width",width);
$(this).css("height",height);
});
}
You will notice that we are dividing the pixel width and height by 100 to arrive at the new em measurements. This means that if the font size were set to 100 pixels, the width and height of the image would be 5 ems. For now, lets set the font size to 50 pixels. At the same time, lets change the width, height, and line-height of the li from 500px to 5em.
ul#grid li {
...
font-size: 50px;
width: 5em;
height: 5em;
line-height: 5em;
}
Adding the slider
The jQuery UI provides a lightweight slider that we can bind to the font size of the li. And you guessed it: as the font size increases, the images will enlarge; as it decreases, the images will shrink. Nifty, right?
To set up the slider, we first need to include the jQuery and jQuery UI JavaScript files, as well as the CSS file for jQuery UI.
<link rel="stylesheet" href="ui.all.css" type="text/css"> <script src="jquery.js" type="text/javascript"></script> <script src="jquery-ui.js" type="text/javascript"></script>
Next, we need to drop in some basic HTML for the slider:
<div id="grid_slider"> <div class='ui-slider-handle'></div> </div>
We also need to initialize the slider by adding some JavaScript to the initializeGrid() function. We will set the maximum value at 100, the minimum value at 10, and the initial value in the middle at 50.
$("#grid_slider").slider({
value: 50,
max: 100,
min: 10,
slide: function(event, ui) {
$('ul#grid li').css('font-size',ui.value+"px");
}
});
And presto! We now have an image grid that fluidly scales and is light on the browser. (Boy will that client of yours be impressed!)
Example 2: The finished product
Related Posts
Here's some other articles that you will definitely find useful.










40 comments
Paul Randall
May 22, 2009A nice example, and I like the fact the image quality remains high.
mynameisorman
May 22, 2009Nice tutorial. Not sure what I could use it for just yet but it’s in my jQuery bookmarks!
josé pacheco
May 22, 2009i´ll try i near future use this example. Very cool!
Roshan Bhattarai
May 22, 2009great example…and nice mathematical calculation man…good job…
Stephen Fairbanks
May 22, 2009Very interesting… I’ll have to think of ways I can use this. For evil things, perhaps.
bitlimakina
May 22, 2009great post thank you
Ruan Carlos
May 22, 2009Very good work, but if I can resize only one picture would also be cool, also grid.
@todayinart
May 22, 2009Retweeted! Awesome man, thanks.
Henry
May 22, 2009@todayinart
Thanks! Tyler did an awesome job writing this tutorial.
vidlord
May 22, 2009could you make this work with the mouse wheel?
Tyler Tate
May 22, 2009Glad everyone is liking the tutorial! I’ve been used this technique in my company’s content management system to nicely display images, though I’m sure there are other uses out there as well.
Taking it a step further, since a fairly large image is already being loaded for the image grid, you could easily add a link to view the full size of that same image in a lightbox.
Tyler
Kamrul
May 23, 2009Helpful tutorials. I am using it . thanks.
art2code
May 23, 2009nice tutorial! thanks
Dusan
May 23, 2009Cool effect. One thing that is probably missing is to add IE only css rule ul#grid li img { -ms-interpolation-mode: bicubic;} for better quality images in IE
N. Haran
May 24, 2009Nice article.
FYI: It’s ‘peek’ not ‘peak’.
Henry
May 25, 2009@N. Haran
Thanks for pointing out that typo.
Blue Blots
May 26, 2009nice tutorial. thanks for the share
Saw Htoo
May 26, 2009Thanks for sharing. I will try this one for sure.
Michael Angrave
May 28, 2009Another interesting example of jQuery. Doesn’t really stand out to me what I could use it for at present, but I will be making a note of it for potential future use.
Keep up the work, always looking for examples of jQuery. Very powerful tool.
Sasha
May 30, 2009Awesome, love the idea of this! This would be great on, say, web image galleries, letting people decide what size they want to view the thumbnails in. How would one go about integrating with with the jquery Cookie plugin, so it remembers settings site-wide? That would totally make this kick-ass.
Chad
June 17, 2009Thank you for this tutorial. I decided to implement it on my website, you can see it here: http://www.apoads.com/CampFuji/Ad/Photo
One thing, the photos on my site are pulled from a database. That’s no big deal, but it means that the images that are in the list can change from time to time.
A problem cropped up with browsers caching the photos in the list, but when it changes it causes some weird stretching of the photos.
To reproduce the effect, visit the site linked above… then visit this page: http://www.apoads.com/CampZama/Ad/Photo . It’s the same thing but the photos are in a different arrangement.
Any ideas on how to resolve this?
Thanks in advance!
Aryashree Pritikrishna
August 11, 2009Thanks for your information. Great job man.
Cheers,
Arya
Narendra
September 24, 2009great post! I was searching for this since long time
Pretush
December 23, 2009Nice illustration, there was also not much difference in image quality
federicosanchez
January 15, 2010The links to Example 1 and Example 2 don’t work… What a pity… Could you fix them? Thank you.
CommerceStyle.com
January 17, 2010I get 404 errors on the examples….
Onetop
April 2, 2010Great tutorial. I will give it a go on my next website.
Thanks for sharing
Anurag
April 8, 2010its good very attractive and easy to use
thanks
Ibrahim
June 26, 2010Cool, I was looking for this.
Kevin
November 17, 2010Awesome. Do you know if it is possible to save the resized gallery to a cookie or save the resized settings when the page is reloaded? Also, reset button to resize gallery to original settings. Thanks.
Sam
January 4, 2011Really nice and smooth. Am trying to use it with images that users upload, so have removed the width and height from the HTML img elements (as we don’t know them for any uploaded images), but without width and height this doesn’t display the image. Would appreciate any help, just trying to get into JQuery.
Thanks
tuba
June 27, 2011This is really helpful for managing photo projects using jQuery. Thank you for the awesome tutorial. Thanks!
Arthur
September 17, 2011Hi, this is wonderful!
Wondering however, how could I make a version of this code that pulls the images from a folder or directory automatically to populate the grid?
This is great for small pages, but once you start dealing in the hundreds it gets a little monotonous :/ can anyone link me to some tutorials?
Mark Anthony Recto
February 6, 2012Thank you, its make my coding understandable than other samples….
Vipul Chauhan
February 6, 2012This is really helpful for managing photo projects using jQuery. Thank you for the awesome tutorial. Thanks!
Leinix Advertising Group
March 9, 2012Very nice
Elaine
March 16, 2012Demo links don’t seem to be working….
Md. Liton Arefin
May 5, 2012Check the example links. Those are not valid or mistakes to link the exact demo page.
creativefault
June 25, 2012The demo links is broken…
Narender
August 6, 2012Can i use these slideshows with blogger blog ?