Yesterday, Jon and I were going back and forth about what to blog about next. Love of CSS and doing something cool with it is kind of our thing and we quickly jumped on a brand new idea: polaroid style images with just CSS. Holy super awesome, Batman!
With our end goal in mind (polaroid style images), we needed to set a few ground rules:
1. Has to work on a grid of linked images
2. Images must be randomly rotated like a pile of images you're sifting through
3. No actual text should be used on the images (only title and alt attributes)
4. Has to be done with just CSS (no javascript)
After establishing those requirements, we got down to business. Here's a quick rundown of how we did it. (Not big on reading?
Jump right to the demo.)
###Starting with the Images
We get underway by first coding up our grid of images. We used an unordered list with each image linked to our Flickr account as the baseline for everything. This would allow us to echo the title text of the anchor while creating a clickable set of images.
Once we laid the groundwork, we moved on to getting the title attribute's content to show. That was difficult at first—we didn't realize the img element wasn't fully supported for this—but we quickly got it working with the anchor.
###Using :after to Create Content
If you were to look at our demo, and then at the source code, you might be a little surprised. We're not showing any actual text in our HTML. Instead, we're using a CSS2.1 pseduo-selector, :after, to get the job done. Here's a look at the CSS:
ul.polaroids a:after {
content: attr(title);
}
By using the :after, we can add a rule to our CSS that gets the anchor tag's title attribute and echoes the content immediately following the img. You'll note that despite the selector saying "after," it actually means "after the actual content of this element," thus showing the title text withing the anchor and after the image.
And now comes the fun part of rotating our images and applying some badass styles for impact and cool-factor.
###Randomly Rotate the Images
With some help from our browser-specific CSS3 properties, we can "randomly" rotate our images. To do it, we first set a default angle at which to rotate our images. From there, we apply additional rules with the
:nth-child
pseudo-selector to give the feeling of random.
Here's the CSS to do it:
/* By default, we tilt all our images -2 degrees */
ul.polaroids a {
-webkit-transform: rotate(-2deg);
-moz-transform: rotate(-2deg);
}
-
/* Rotate all even images 2 degrees */
ul.polaroids li:nth-child(even) a {
-webkit-transform: rotate(2deg);
-moz-transform: rotate(2deg);
}
-
/* Don't rotate every third image, but offset its position */
ul.polaroids li:nth-child(3n) a {
-webkit-transform: none;
-moz-transform: none;
position: relative;
top: -5px;
}
-
/* Rotate every fifth image by 5 degrees and offset it */
ul.polaroids li:nth-child(5n) a {
-webkit-transform: rotate(5deg);
-moz-transform: rotate(5deg);
position: relative;
right: 5px;
}
-
/* Keep default rotate for every eighth, but offset it */
ul.polaroids li:nth-child(8n) a {
position: relative;
top: 8px;
right: 5px;
}
-
/* Keep default rotate for every eleventh, but offset it */
ul.polaroids li:nth-child(11n) a {
position: relative;
top: 3px;
left: -5px;
}
In the above code, we rotate all our images 2 degrees and then go back through to programatically rotate more to add variety. Here's how it looks:
The rotating above breaks down like so:
- Every image is rotated -2 degrees by default
- All even images are rotated 2 degrees
- Every fifth image is rotated 5 degrees and moved right 5px
- Every eighth image keeps the default rotation (-2 degrees) and is offset 8px from the top, 5px from the right
- And every eleventh image keeps the default rotation but is offset 3px from the top and -5px from the left
Now, in a group of 12 images, they appear to be randomly rotated and positioned. Pretty slick, huh? Now we move onto the final details of visual aesthetic.
###Final Touches
With the rotating in place, we can focus on the sex appeal of our grid of images. In addition to the basic stylistic changes, we'll add in drop shadows and a Webkit transition to smooth things out in Safari (sorry, Firefox users, but there is no support for transitions yet).
And that's a wrap! With just a bit of love from CSS, we've created some *freaking* sweet polaroid style images with nothing more than a list of images.
###View the Demo
Be sure to read through the demo for more explanation around the CSS we've used and where to find additional information. We also included a true "pile of images" farther down the page—
check it out!
View Demo »