Skip to content

Instantly share code, notes, and snippets.

@infn8
Last active August 29, 2015 14:06
Show Gist options
  • Save infn8/760d30977a89b0d3d975 to your computer and use it in GitHub Desktop.
Save infn8/760d30977a89b0d3d975 to your computer and use it in GitHub Desktop.
Modernizer Canvas Blend Modes
Modernizr.addTest('canvasblending', function() {
if (Modernizr.canvas === false) return false;
var canvas = document.createElement('canvas');
var ctx = canvas.getContext('2d');
ctx.globalCompositeOperation = 'screen';
return ctx.globalCompositeOperation === 'screen';
});
@infn8
Copy link
Author

infn8 commented Sep 10, 2014

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