pixelate.js is a simple jQuery plugin to pixelate any set of images and optionally reveal them on hover.
<img src="test.jpg" width="200" height="200" data-pixelate>You may also pixelate an image via JavaScript (with jQuery) like so:
$('img#myimage').pixelate();valueThe percentage of pixelation to perform, a value between0and1revealReveal the image on hover and remain revealed if clicked
These options may be specified by data tags, like so:
<img src="img.jpg" data-pixelate data-value="0.5" data-reveal="false">or by jQuery/JavaScript:
$('img#myimage').pixelate({ value: 0.5, reveal: false });MIT