Last active
August 29, 2015 14:06
-
-
Save infn8/760d30977a89b0d3d975 to your computer and use it in GitHub Desktop.
Modernizer Canvas Blend Modes
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
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'; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Adapted from https://github.com/Modernizr/Modernizr/blob/master/feature-detects/canvas/blending.js