How to create a blur effect in a photo editing program, and then fade between a blurry image and a non-blurry image:
jQuery(function ($) { $('#blurred_image, #focused_image').fadeToggle(1500, function () {
Here is jsfiddle: http://jsfiddle.net/jasper/2FZ3Z/1/ (note that you need to click on the image to cause the transition from blurry to not blurry image).
Another way to blur the image would be to put the same image on top of it, move it a few pixels and change its opacity so that the user can see the original image underneath. Then leave the overlay image. This is more like linear blurring, rather than Gaussian.
Here's the jsfiddle: http://jsfiddle.net/jasper/FTt3b/ (click on the image to animate the blur).
Jasper
source share