Is there any way to blur images with JavaScript/jQuery so that when they are blured I can sharpen them by hovering them with the mouse?
Advertisement
Answer
Pixastic can do that for you. Here’s the relevant doc: http://www.pixastic.com/lib/docs/actions/blur/
To blur:
JavaScript
x
2
1
Pixastic.process(document.getElementById('demoimage'), 'blur');
2
To revert:
JavaScript
1
2
1
Pixastic.revert(document.getElementById('demoimage'));
2
The entire solution with jQuery:
JavaScript
1
10
10
1
var blur = function () {
2
Pixastic.process(this, 'blur');
3
};
4
5
var unblur = function () {
6
Pixastic.revert(this);
7
};
8
9
$('img').each(blur).hover(unblur, blur);
10