Created
September 2, 2012 00:34
-
-
Save dashr/3592432 to your computer and use it in GitHub Desktop.
CamanJS greyscale + trans png overlay on all post images
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
$(document).ready(function(){ | |
$('.photo img').each(function() { | |
Caman( this, function () { | |
this.greyscale(); | |
this.newLayer(function () { | |
this.setBlendingMode('normal'); | |
this.opacity(100); | |
this.overlayImage('bW.png'); | |
}); | |
this.render(); | |
}); | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi !
I am trying to use this code, but it doesn't work.
How do you correctly include caman.js on Tumblr ?
Thank you in advance ! I really need this knowledge!