Last active
June 28, 2017 09:12
-
-
Save ingozoell/354bb534023621c12d3669bd673dd08f to your computer and use it in GitHub Desktop.
CSS mix-blend-mode – Modernizr Fallback
https://stackoverflow.com/questions/28087877/testing-of-css-mix-blend-mode
This file contains hidden or 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
.no-mix-blend-mode .class { | |
opacity: .75; | |
} |
This file contains hidden or 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
/* Blend-Mode-Destection ------------------------------------------------ */ | |
Modernizr.addTest('mix-blend-mode', function(){ | |
return Modernizr.testProp('mixBlendMode'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment