Skip to content

Instantly share code, notes, and snippets.

@dashr
Created September 2, 2012 00:34
Show Gist options
  • Save dashr/3592432 to your computer and use it in GitHub Desktop.
Save dashr/3592432 to your computer and use it in GitHub Desktop.
CamanJS greyscale + trans png overlay on all post images
<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>
@coubraque
Copy link

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment