jQuery Before/After Plugin
Sep 20th, 2011 by admin
Not long ago the New York Times had an article which showed a road in Brooklyn that had been reconstructed to make it safer and more pleasing to the eye. To show the difference in the reconstruction project, they showed a before and after picture using Flash that let the visitor drag a slider over the images, which were sandwiched with one on top of the other, so that you could easily see how dramatic the changes were. I immediately thought that this could be done in JavaScript using jQuery, so I set out to do it. Here’s the result:
Pretty slick no? The possibilities for this plugin are endless. Doctors can have before and after images of patients, Photoshop users can show the before and after differences between images, remodelers can show the before and after images of projects and on and on. This plugin weighs in at only 7K and can be used multiple times on a page.
Being used by:

and many more…
Download
Download jquery.beforeafter.zip (version 1.4 – September 20, 2011)
What’s So Great About this Plugin?
- Slick effect, no Flash needed
- It’s just 7 Kb (5 Kb compressed)
- Reusable on multiple containers
- Degradable. If the visitor doesn’t have JavaScript they will still see both images.
- Did we mention it’s slick?
How to Use
First, your before and after images must be the same size. Both images must exist within a containing div which must have an ID. See this example.
<div id="container"> <div><img alt="before" src="before.jpg" width="600" height="366" /></div> <div><img alt="after" src="after.jpg" width="600" height="366" /></div> </div>
All images *MUST* have the width and height declared otherwise the plugin won’t work in Safari, Chrome, and any other webkit-based browsers.
The plugin requires jQuery (of course) and the draggable component of jQueryUI. Both files are bundled with the plugin however you can point to other copies if you prefer (e.g. jquery on Google and jqueryui on Google). Upload the plugin files on your site and link to them:
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery.beforeafter.js"></script>
<script type="text/javascript">
$(function(){
$('#container').beforeAfter();
});
</script>
That’s it! You can apply the before/after plugin to any number of elements on a page.
Options
The following options are configurable:
- animateIntro – whether or not to have the drag bar start completely to the right of the container and gradually move by itself to the midpoint (default false)
- introDelay – if animateIntro is true, the number of milliseconds to wait before beginning the automatic drag bar move to the center of the image (default 1000)
- introDuration – if animateIntro is true, the number of milliseconds it will take for the drag bar to go from the right side of the image to the middle of the image (default 1000)
- showFullLinks – whether or not to display links below the image that a visitor can click on that will automatically show the full before or full after image (default true)
- imagePath – the path (absolute or relative) to where you store the navigation images (default ‘/js/beforeAfter/’)
- introPosition – where the draggable separator should appear when the plugin loads as a fraction of the overall width (default .5). For example, .25 would have the draggable separator appear 1/4th of the way on the left of the image.
- beforeLinkText – used with the showFullLinks option, this is the text used for the before image link (default ‘Show only before’)
- afterLinkText – used with the showFullLinks option, this is the text used for the after image link (default ‘Show only after’)
- cursor – the CSS style of the cursor when pointing to the drag handle (default ‘pointer’)
- clickSpeed – the speed (in milliseconds) for a click animation to complete (default 600)
- linkDisplaySpeed- the speed (in milliseconds) for a link animation to complete (default 200)
- dividerColor – the CSS hex color of the divider bar (default ‘#888′)
- enableKeyboard – enable keyboard control using the left and right arrowd (default false)
- keypressAmount – if enableKeyboard is true, the number of pixels to move the divider on each keypress (default 20)
- onReady – a callback function that is triggered when the plugin is ready to be used
Options are added when calling the script:
$('#container').beforeAfter({
animateIntro : true,
introDelay : 2000,
introDuration : 500,
showFullLinks : false
});
Enjoy!
Demos
Note that the plugin uses several images which are kept in the same folder as the plugin. If you store the plugin in another folder on your server, update the path to these images. Please be sure to read the license before using.
Great plugin. Thanks. One question: I am trying to create a page where I have the two images and the slider (works perfectly) and then called separately but directly over it I have a reference map (transparent background with black lines) that can be toggled on and off. In all browsers the slider still works perfectly with or without the reference map being displayed over the two images except for in IE in which case the slider will only work if the reference map is toggled off. Any ideas?
Hi, what version of IE and do you have a link I can look at?
I posted the web page for Allison (who posted the last question you received). It is here:
http://mtercek.webfactional.com/gycc/index.html
We can get your plugin to work in FF, IE8, and Chrome, but not IE7. Any help you can offer much appreciated…